JavaScript if shorthand without the else
JavaScript if shorthand without the else
read moreJavaScript if shorthand without the else
read moreThe nullish coalescing operator is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand.
read moreBuilt-in data structures available in JavaScript and what properties they have. These can be used to build other data structures. Wherever possible, comparisons with other languages are drawn.
read moreThe toString() method gives us the string representation of array, number, strings and booleans.
read moreWhat is the Readonly Utility Type? Readonly<Type> Constructs a type with all properties of Type set to readonly, meaning the properties of the constructed type cannot be reassigned.
read moreThe optional chaining operator (?.) enables you to read the value of a property located deep within a chain of connected objects without having to check that each reference in the chain is valid.
read moreFunctions are one of the fundamental building blocks in JavaScript. A function in js is similar to a procedure a set of statements that performs a task or calculates a value, but for a procedure
read more