博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arrow func, return obj literals
阅读量:6232 次
发布时间:2019-06-22

本文共 334 字,大约阅读时间需要 1 分钟。

var setNameIdsEs6 = (id, name) => ({ id: id, name: name }); // don't forget this ()!!!

console.log(setNameIdsEs6 (4, "Kyle")); // Object {id: 4, name: "Kyle"}

var setNameIdsEs6 = (id, name) => {return { id: id, name: name }}; //see the difference?? console.log(setNameIdsEs6 (4, "john")); // Object {id: 4, name: "john"}

BOTH WORKS!!!

转载地址:http://ofena.baihongyu.com/

你可能感兴趣的文章
Spring AOP 源码分析系列文章导读
查看>>
Linux - 系统 - 文件目录
查看>>
[LeetCode] 267. Palindrome Permutation II
查看>>
前端妹纸的进阶之路——redux源码分析
查看>>
Centos7下使用gitolite搭建git服务器
查看>>
如何更好的编写async函数
查看>>
【前端工程师手册】JavaScript之this的笔记
查看>>
使用nginx来为你在一台服务器部署多个Web Server
查看>>
G5 Capital 与 SegmentFault 达成战略合作
查看>>
抽象类和接口的区别
查看>>
Vue 组件详解
查看>>
前端面试题-主流浏览器内核
查看>>
JavaScript 进阶知识 - Ajax篇
查看>>
阿里巴巴测试环境稳定性提升实践
查看>>
websocket搭建简单的网页聊天室框架【续1】
查看>>
Scrapy Shell
查看>>
array_merge和+号合并数组的区别
查看>>
TP5整合 WorkerMan 以及 GatewayWorker
查看>>
Facebook Docusaurus 中文文档 准备网站
查看>>
如何绘制一个圆圆的loading圈
查看>>