Madeline Caplesmadelinecaples.hashnode.dev·Apr 8, 2024Reverse an array in place with meAs part of my attempt to better my Javascript skills, I have been working through Eloquent Javascript by Marijn Haverbeke. Chapter 4 is all about Arrays and Objects, and one of the exercises is to reverse an array in place. I thought it would be fun ...36 readsJavaScript
Yashas Vcodefor.hashnode.dev·Feb 18, 2024Chapter 2 - Program Structure (Part 1)In this chapter, Marijn Haverbeke delves into the realm of programming with JavaScript. Expressions and Statements An expression in code is a piece of code that results in a value. Expressions can be as simple as a number like 22 or a string like "ps...Eloquent JavaScript