#javascript
Read more stories on Hashnode
Articles with this tag
Modules Quite crucial for reusability of code Collect related functions, objects, values together export values for use by other scripts import...
Quick revision/Notes · Iteration let x = [1, 'b', a => a + 1]; x.length = 6; for(let i = 0; i<x.length; i++){ console.log(`x: ${x[i]} of type...
Originally I was revising JavaScript ended up turning the stuff into a blog :) · Basic arrays Collection of objects of any type Can be a mixed...