TATunwase Ayobamiinayobami.hashnode.dev·Jul 2, 2021 · 3 min readJSON: What you should knowIntroduction JavaScript Object Notation (JSON) is a language-independent, data serialization format that uses text to store and interchange data. It is based on a subset of the JavaScript language, but can be used in other programming languages as we...00
TATunwase Ayobamiinayobami.hashnode.dev·Jun 24, 2021 · 3 min readLogical Assignment OperatorsPrerequisites To grasp the content of this article, you should be comfortable with the following concepts: logical OR operator (||) logical AND operator (&&) nullish coalescing operator (??) short circuit evaluation truthy values falsy values nullis...00
TATunwase Ayobamiinayobami.hashnode.dev·Jun 5, 2021 · 13 min readHigher Order Array Iteration MethodsIntroduction To have a clear understanding of what higher order array iteration methods are, I am going to define each of these terms separately: Array An array is a list-like structure that is used to store a set of values into a single variable....00
TATunwase Ayobamiinayobami.hashnode.dev·May 28, 2021 · 5 min readRest parameters and Spread syntaxRest parameters The rest parameter syntax enables a function to have a variable number of arguments. When combined with destructuring assignment, rest parameters become an indispensable tool for dealing with arrays and objects. Rest parameters are re...00
TATunwase Ayobamiinayobami.hashnode.dev·May 28, 2021 · 3 min readHow to use Default Parameters in JavaScriptDefault parameters is a feature in JavaScript that allow function parameters to be initialized with a default value if no argument is given for that parameter, or if a value of undefined is assigned to that function parameter. Default parameters are ...00