var
// first name of the person
firstname,
// last name of the person
lastname,
// the language
// can be 'en' or 'es'
language;
var person = {
// the first name
firstname: 'John',
// the last name
// (always required)
lastname: 'Doe'
}
console.log(person);
comment your code - javascript
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 错误提示: The entitlements specified in your application’s Co...
- 将应用提交到AppStore时候,报错并提示开启了keychain Sharing解决办法: 关闭Keychain...
- xcode7.3。 证书 ,provisions file 都正确,网上找了各种方法,无法解决。 build ,c...
- 在直接运行release时报错, 在网上找了很多都没解,后面发现,我的场景还有点特别根本不用处理好像。如果我是不自...
- View.VISIBLE、INVISIBLE、GONE的区别 android中UI应用的开发中经常会使用view....