技术杂谈
-
-
Git&GitHub学习笔记
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and e…… -
-
-
深入理解JavaScript对象属性
创建JavaScript的对象,可以通过对象.属性名获取值,也可以通过对象['key']获取内容。 使用对象['key'] ,传入的内容都会被转换为字符串值。 var obj = { a: ……