Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript Spread Operator with Object

const obj1 = { x : 1, y : 2 };
const obj2 = { z : 3 };

// add members obj1 and obj2  to obj3
const obj3 = {...obj1, ...obj2};

console.log(obj3); // {x: 1, y: 2, z: 3}
Comment

object spread method

this.setState(prevState => {
  let jasper = Object.assign({}, prevState.jasper);  // creating copy of state variable jasper
  jasper.name = 'someothername';                     // update the name property, assign a new value                 
  return { jasper };                                 // return new object jasper object
})
Comment

object spread method

this.setState(prevState => ({
    jasper: {                   // object that we want to update
        ...prevState.jasper,    // keep all other key-value pairs
        name: 'something'       // update the value of specific key
    }
}))
Comment

Spread Syntax for object

let objClone = { ...obj }; // pass all key:value pairs from an object 
Comment

PREVIOUS NEXT
Code Example
Javascript :: jquery slider value 
Javascript :: check env 
Javascript :: sort by attribute in reactjs 
Javascript :: react if statement 
Javascript :: react native Setting a timer for a long period of time 
Javascript :: if statement in react native 
Javascript :: how to make a alert popup message in javascript 
Javascript :: how to set css in hbs in express 
Javascript :: multiple queries in node js 
Javascript :: react cors error 
Javascript :: how to use the foreach method in javascript 
Javascript :: new Map() collection in react state 
Javascript :: angular countdown begin stop pause 
Javascript :: how to repeat string in javascript 
Javascript :: mail 
Javascript :: capitalize each word from string in react 
Javascript :: vue boolean 
Javascript :: React native calender date picker 
Javascript :: how to send js array from ajax 
Javascript :: instanceof javascript 
Javascript :: JavaScript querySelector - By Attribute 
Javascript :: jest mock mockname 
Javascript :: Adding User And Hashed Password In ExpressJS 
Javascript :: how to set selected value of dropdown in javascript 
Javascript :: learn express 
Javascript :: react 17 
Javascript :: how to use findoneandupdate 
Javascript :: mariadb JSON_ARRAYAGG does not exist 
Javascript :: optional function parameter javascript 
Javascript :: jquery a tag click 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =