可以采用两种方法访问对象的属性。一种是 .property,另一种是 [property]。语法-1Object.property;语法-2Object["property"];为了更好地理解,让我们来看下面的例子。在下面的例子中,定义了一个名为 'person' 的对象,并使用点表示法访问了它的属性。示例在线演示 var person = { firstname:"Ram", lastname:"kumar", age:50, designation:"content developer" }; document.write(person.firstname + " " + "is in a role of" + " " + person.designation); 输出Ram is in a role of content developer在下面的例子中,使用方括号表示法访问了对象 'person' 的属性。示例在线演示 ... 阅读更多
要连接两个字符串,我们需要使用 '+' 运算符在字符串之间添加空格。但是,如果第一个字符串本身就包含空格,则无需显式分配空格。在下面的示例中,由于字符串 'str1' 包含空格,因此仅连接即可,无需添加空格。示例在线演示 function str(str1, str2) { return (str1 + str2); } document.write(str("tutorix is the best ", "e-learning platform")); 输出tutorix is the best ... 阅读更多