Skip to content

Instantly share code, notes, and snippets.

@gotoplanb
Forked from anonymous/gist:2396251
Created April 16, 2012 03:55
Show Gist options
  • Save gotoplanb/2396274 to your computer and use it in GitHub Desktop.
Save gotoplanb/2396274 to your computer and use it in GitHub Desktop.
Code with Me - Sunday 8pm PT
//5.4
var days = [Monday, Tuesday, Wednesday];
days[0] = "Monday";
days[1] = "Tuesday";
days[2] = "Wednesday";
@gotoplanb
Copy link
Author

//5.4
var days = ["Monday", "Tuesday", "Wednesday"];
days[0] = "Monday";
days[1] = "Tuesday";
days[2] = "Wednesday";

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment