User Tools

Site Tools


java-script:arrow-function-return-object

This is an old revision of the document!


Returning an Object from an arrow function

If you want to return the object from the arrow function, you'll need to either use the return keyword:

const getObject = () => {
  return { key: 'value' };
};

Or use parentheses to make it an implicit return of an object literal:

const getObject = () => ({ key: 'value' });
java-script/arrow-function-return-object.1691664192.txt.gz · Last modified: 2023/08/10 13:43 by odefta