摘要:
Object.extend = function(destination, source){ for (var property in source) { destination[property] = source[property]; } return destination; }/*字符串*/var string = new String("hello");var string1 = string;var string2 = string;string1 = string1+" world... 阅读全文