Answers for "js json data undefined"

0

js json data undefined

// Wrong
const objMaker = () => { answer: 42 };

// Right
const objMaker = () => ({ answer: 42 });
Posted by: Guest on March-07-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language