subtitle
eloquentJS_06-The Secret Life of Objects eloquentJS_06-The Secret Life of Objects
The Secret Life of Objects class Rabbit { constructor(type) { this.type = type; } speak(line) { console.log(Th
2020-07-10
eloquentJS_05-Higher-Order Functions eloquentJS_05-Higher-Order Functions
https://repl.it/@KevinMulhern/eloquentjavascriptchapter5-1 repeat 12345678function repeat(n , action) { for(let i=0; i&l
2020-07-10
eloquentJS_04-Data StructuresObjects and Arrays eloquentJS_04-Data StructuresObjects and Arrays
1234567891011121314151617let journal = [ {events: ["work", "touched tree", "pizza", "running", "television"]
2020-07-10