标签:
一、定义
Number --数值型
boolean --布尔型
string --字符串型
Null --空
undefined --未定义
Object --对象型
var s="abs";
document.write(s);
/*
输出:
abs
*/
var s=‘abs‘;
document.write(s);
/*
输出:
abs
*/
\n --换行
\t --水平制表
\b --退格
\r --换行
\f --换页
\v --垂直制表符
\\ --反斜杠
\‘ --单引号
\" --双引号
\xXX --以十六进制码表示一个字符
\uXXXX --以十六进制码表示一个Unicode字符
var s=‘abc‘;
var s2=s;
document.write(s2);
/*
输出:
abc
*/
var s1=‘012‘;
var s2=‘345‘;
var s3=s1+s2;
document.write(s3);
/*
输出:
012345
*/
var s=‘012‘;
var s2=s;
s+=‘345‘;
document.write(s2);
/*
输出:
012
*/
document.write(typeof ‘abc‘;);
/*
输出:
string
*/
------------------------------------------
var s=‘abc‘
document.write( typeof s);
/*
输出:
string
*/
var s=‘abc‘;
document.write(typeof (s);)
/*
输出:
string
*/
------------------------------------------
document.write(typeof ‘abc‘;)
/*
输出:
string
*/
------------------------------------------
document.write(typeof ‘abc‘;)
/*
输出:
string
*/
------------------------------------------
document.write( typeof(typeof(s)) );
/*
输出:
string
*/
var s1=‘012‘;
var s2=‘0‘;
var s3=s1+‘12‘;
s1==s3
>>true
s1!=s3
>>false
s1!==s3
>>false
var s1=‘abc‘;
var s2=‘def‘;
s1<s2
>>true
s1<=s2
>>true
s1>s2
>>false
s1>=s2
>>false
var s=‘012‘;
document.write(s.length);
>>3
document.write(‘012‘.length);
>>3
参考书籍资料:
1、javascript编程全解http://www.ituring.com.cn/book/1140
2、javascript 岳英俊http://pan.baidu.com/s/1eQlegKE
标签:
原文地址:http://www.cnblogs.com/Zjingwen/p/4486276.html