BBenjamininbenjamincodes.hashnode.dev·Mar 19, 2023 · 13 min readArrays in JavaScript (A masterclass)Overview of JavaScript Arrays JavaScript has several data structures for storing and manipulating data. However, when we need an ordered collection of data from the 1st to the 2nd, to the 3rd element, and so on, JavaScript arrays are the most appropr...00
BBenjamininbenjamincodes.hashnode.dev·Mar 12, 2023 · 8 min readObjects in JavaScriptIntroduction What objects are in JavaScript? We learnt from the article on data types, that there are primitive and non-primitive data types in JavaScript. Primitives hold values that are only of a single data type (such as string, number, booleans, ...00
BBenjamininbenjamincodes.hashnode.dev·Mar 4, 2023 · 6 min readUnderstanding Data Types in JavaScriptIntroduction JavaScript is a popular programming language used for building web applications and other software. A key feature of JavaScript is its ability to work with different data types. In this article, you will get a good understanding of the d...00
BBenjamininbenjamincodes.hashnode.dev·Dec 6, 2022 · 2 min readVariables and Values in JavaScriptWhat are values? Values are small chunks of data. They are the simplest unit of information in every single source code. Values come in different types. Let's see some examples of values so we can have a better understanding. These examples are gro...00