- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Spread Operator
Expanding Iterables:
- The spread operator (...) allows expanding iterables like arrays or strings into individual elements.
Array Manipulation:
- Used for combining arrays, creating copies, or passing array elements as function arguments.
String Conversion:
- Converts strings into arrays of characters, facilitating string manipulation.
Example: Array Concatenation
const arr1 = [1, 2, 3];
const arr2 = [4, 5, 6];
const combinedArray = [...arr1, ...arr2];
Example: Creating Array Copies
const originalArray = [1, 2, 3];
const copyArray = [...originalArray];
Example: Passing Array Elements as Function Arguments
const numbers = [1, 2, 3];
const max = Math.max(...numbers);
Example: String Conversion
const str = 'hello';
const chars = [...str];
Object Spread Operator (ES2018):
- Extends object literals by copying own enumerable properties from one or more source objects to a target object.
Example: Object Spread Operator
const obj1 = { a: 1, b: 2 };
const obj2 = { c: 3, ...obj1 };
Key Points
- The spread operator simplifies array manipulation and string conversion in JavaScript.
- It offers a concise syntax for combining arrays, creating copies, and passing array elements as function arguments.
- In ES2018, the object spread operator extends object literals, providing a convenient way to merge objects.