Open taitruong opened 4 years ago
Summarize your learnings in a series of blogs:
Please remember: put all your exercises and notes on your personal github repo. Use git and vi :)!
Here is one little exercise: map a one-dimensional array into a 2-dimensional matrix (=table).
Given input is a one dimensional array like:
Transform input into a nested/two-dimensional array. Like [1,2,3,4,5,6,7,8,9] => [ [1,2,3], [4,5,6],[7,8,9]]
Provide two types of solutions:
Goal: learn by developing a JavaScript solution
Getting started
Resources -MDN: JavaScript reference
Further readings
Books: https://hackr.io/blog/javascript-books