-
-
Save gotoplanb/2396274 to your computer and use it in GitHub Desktop.
Code with Me - Sunday 8pm PT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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
//5.4
var days = ["Monday", "Tuesday", "Wednesday"];
days[0] = "Monday";
days[1] = "Tuesday";
days[2] = "Wednesday";