|
Microsoft® JScript join Method |
Language Reference Version 2 |
Converts all elements of an array into a String object and joins them.
arrayobj.join(separator)
The separator argument is a String object that is used to separate one element of an array from the next in the resulting String object. If omitted, the array elements are separated with an empty string.
The join method returns a String object that contains each element converted to a string and concatenated together. An example using the join method follows:
var my_array = new Array("Jan 5", 1996, "hey", "my birthday!"); var my_string = my_array.join(", ");
After execution, my_string contains "Jan 5, 1996, hey, my birthday!"
© 1997 by Microsoft Corporation. All rights reserved.
| file: /techref/inet/iis/jscript/htm/js15.htm, 2KB, , updated: 1997/9/30 04:44, local time: 2010/3/19 04:23,
38.107.191.111:LOG IN
|
| ©2010 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? Please DO link to this page! Digg it! <A HREF="http://www.piclist.com/techref/inet/iis/jscript/htm/js15.htm"> join Method</A> |
| Did you find what you needed? |
Robotics nuts!Check out http://www.verinet.com/~dlc/ email: dlc@verinet.com... This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.