JSFiddle - React, Tailwind, and code Playground

by LyndseyB

Babel + JSX

const person = {
	name: 'Lyndsey',
  age: 30,
  likes: ['javascript', 'es6']
};

const personCopy = { ...person };

//personCopy.likes.push('sass');
//console.log(person); // ??WHAT

const personCopy2 = JSON.parse(JSON.stringify(person));
personCopy2.likes.push('sass');

console.log(person);
console.log(personCopy2);