Originally Posted By: Pax

....
Do I need the + in there these days? I see a bit of code written with it in, and yet others leave it out.

Pax


Work just fine with and without the +.

 Code:
$array = "McDonalds", "Burger King", "KFC", "Dunkin Donuts", "IHOP"

For $i = 0 to UBound($array)
	$array[$i] ","
Next
Sleep 5


Displays the same as:

 Code:
$array = "McDonalds", "Burger King", "KFC", "Dunkin Donuts", "IHOP"

For $i = 0 to UBound($array)
	$array[$i] + ","
Next

Sleep 5


Edited by Mart (2010-10-06 03:16 PM)
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.