Skip to content

Commit

Permalink
Update my_solution.js
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiekimosabe committed May 30, 2014
1 parent 31873e5 commit 8a23011
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions week_3/3_js_variables_objects/my_solution.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@


// Pseudocode
//
//
//
//
// assign integer value for variable 'secretNumber'
// reassign integer value of 7 to variable 'secretNumber'
// assign string value for variable 'password'
// assign string value of "just open the door" for variable 'password'
// assign boolean value for variable 'allowedIn'
// reassign boolean value of false for variable 'allowedIn'
// create an empty array for variable 'members'
// push string element "John" into array variable 'members'
// push 2 more elements(numbers,string,etc.) into array variable 'members'
// push a final string element "Mary" nto array variable 'members'


// __________________________________________
Expand Down

0 comments on commit 8a23011

Please sign in to comment.