摘要:
一.对象的创建及常用操作(1,3其实差不多,少量的时候可以使用) 1.使用new运算符 var user = new Object(); user.name = '编程浪子'; user.age = 22; user.address = '四川成都'; 2.对象字面量 var user =... 阅读全文
摘要:
52. 不用+、-、×、÷做加法[add two numbers without arithmetic]【本文链接】http://www.cnblogs.com/hellogiser/p/add-two-numbers-without-arithmetic.html【题目】写一个函数,求两个整数的之... 阅读全文