Skip to content

Instantly share code, notes, and snippets.

@stevedomin
Created July 23, 2012 17:20
Show Gist options
  • Save stevedomin/3164825 to your computer and use it in GitHub Desktop.
Save stevedomin/3164825 to your computer and use it in GitHub Desktop.
Commas : beginning of line vs end of line
var tableau:Array = [
'ligne 1',
'ligneeeee 2',
'une ligne parmis d\'autre',
'encore une ligne'
'l',
'etc. etc.',
'des lignes des lignes',
'llllllllllllll'
]
var tableau:Array = [
'ligne 1'
, 'ligneeeee 2'
, 'une ligne parmis d\'autre'
, 'encore une ligne'
'l'
, 'etc. etc.'
, 'des lignes des lignes'
, 'llllllllllllll'
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment