fix(challenges): fix initial contents

fixed: unable solve challenges without editing code outside comments
This commit is contained in:
ValeraS
2018-07-05 11:04:10 +03:00
committed by Kristofer Koishigawa
parent f4d598f060
commit 93295433c7

View File

@ -171,7 +171,7 @@
"name": "index", "name": "index",
"contents": [ "contents": [
"function Stack() { ", "function Stack() { ",
" collection = [];", " var collection = [];",
" this.print = function() {", " this.print = function() {",
" console.log(collection);", " console.log(collection);",
" };", " };",
@ -245,7 +245,7 @@
"name": "index", "name": "index",
"contents": [ "contents": [
"function Queue () { ", "function Queue () { ",
" collection = [];", " var collection = [];",
" this.print = function() {", " this.print = function() {",
" console.log(collection);", " console.log(collection);",
" };", " };",