实例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
//单行注释
/*
多行注释
*/
//变量
//1.
var username;
if(username===undefined){
//2.初始化:第一次赋值
username="wsjdxn";
}
console.log(username);
// 数据类型:类型一旦确定,那么取值范围就确定,并且在上面的可执行的操作也确定了
// 数值, 字符串, 布尔, null / undefined
//
// 对象:对象, 函数, 数值,
//
// 其实, 数值, 字符串, 布尔,叫包装对象
// function 函数名( 参数列表) {
// 函数体:由零条或者多条语句组成;;
// return 结果;
// }
function sun(a,b)
{
return a + b;
}
//函数的掉用:按名调用
//全局变量:在函数外部申明的变量
var x=100;
var y=200;
console.log(sum(x,y));
console.log(c)
</script>
</body>
</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
实例
var n=100
undefined
n
100
var n=100+40 //语句
undefined
n
140
10+20 //表达式
30
运行实例 »点击 "运行实例" 按钮查看在线实例
实例
var a=5
undefined
typeof a //判断
"number"
var b='qwe'
undefined //数值类型
typeof b
"string" //字符串类型
var c= true
undefined //布尔类型
typeof c
"boolean"
运行实例 »点击 "运行实例" 按钮查看在线实例
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!