On this page
- 1 JavaScript Concepts Everyone Should Learn!
- 2 JavaScript Concepts Everyone Should Learn!
- 2.1 Spread operator
- 2.2 Destructuring
- 2.3 Async js
- 2.4 Promises and callback
- 2.5 Async-await
- 2.6 Map filter and reduce
- 2.7 Map
- 2.8 Filter
- 2.9 Reduce
- 2.10 Triple equality
- 2.10.0.1 Introduction to the DOM
- 2.10.0.2 How to apply CSS to iframe?
- 2.10.0.3 JavaScript Map, Reduce, and Filter
- 2.10.0.4 JavaScript: localStorage and sessionStorage
- 2.10.0.5 JavaScript: Array functions/methods
- 2.10.0.6 JavaScript: Array map() Method
- 2.10.0.7 Promise in JavaScript with example
- 2.10.0.8 JavaScript: FormData
- 2.10.0.9 JavaScript: How ES6 Arrow Function Can Help You
- 2.10.0.10 ES6: Spread operator
- 2.10.0.11 ES6: Spread syntax
- 2.10.0.12 ES6: Introduction
- 2.10.0.13 JavaScript: Scope and the Variable this
- 2.10.0.14 JavaScript: Get Element
- 2.10.0.15 JavaScript: JSON (JavaScript Object Notation)
- 2.10.0.16 JavaScript: Application programming interface (API)
- 2.10.0.17 Javascript : Date & Time Program
- 2.10.0.18 JavaScript: What is AJAX?
- 2.10.0.19 JavaScript: Getting started
- 2.11 Leave A Comment Cancel reply
JavaScript Concepts Everyone Should Learn!
JavaScript Concepts Everyone Should Learn!
September 10, 2021
On this page
Spread operator
let data = { username: "GauravJ", email: "email@gmail.com", favLang: "JavaScript", }; let data_updated = { ...data, favLang: "Java" }; console.log(data_updated);
Destructuring
let data = { username: "GauravJ", email: "email@gmail.com", favLang: "JavaScript", }; let { username, email, favLang } = data; //Destructuring