Merge branch 'staging' into converge-bonfires

Conflicts:
	seed/challenges/basic-bonfires.json
	seed/challenges/intermediate-bonfires.json
This commit is contained in:
Quincy Larson
2015-09-30 19:06:28 -07:00
38 changed files with 854 additions and 181 deletions

View File

@@ -520,7 +520,7 @@
"challengeSeed":[
"var ourArray = [1,2,3];",
"ourArray[1] = 3;",
"// ourArray[1] now equals [1,3,3].",
"// ourArray now equals [1,3,3].",
"var myArray = [1,2,3];",
"// Only change code below this line.",
"",
@@ -643,8 +643,9 @@
"challengeSeed": [
"var ourArray = [\"Stimpson\", \"J\", [\"cat\"]];",
"ourArray.shift();",
"// ourArray now equals [\"happy\", \"J\", [\"cat\"]]",
"// ourArray now equals [\"J\", [\"cat\"]]",
"ourArray.unshift(\"happy\");",
"// ourArray now equals [\"happy\", \"J\", [\"cat\"]]",
"",
"var myArray = [\"John\", 23, [\"dog\", 3]];",
"myArray.shift();",