String的属性和方法
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>String的属性和方法</title>
<link rel="stylesheet" href="">
<script>
</script>
</head>
<body>
Strin定义字符串有两种方法
1.使用new语句通过调用字符串对象的构造函数定义一个字符串对象
2.使用var语句定义一个字符串变量,而这个字符串变量可以直接使用字符串的方法个属性
String对象的属性和方法
String属性有三个:length,constructor,prototype
<code>
var s=0;
var newString=new String("teacher");
var s=newString.length;
alert(s.toString(16));
</code>
<code>
var newName=new String("Hello");
if(newName.constructor==String);{
alert("It is a String");
}
</code>
<code>
function employee(name,age){
this.name=name;
this.age=age;
}
var info=new employee("kate",35);
employee.prototype.saylary(null);
info.salary=600;
alert(info.salary);
</code>
</body>
</html>
标签:JavaScript