Blogger Information
Blog 27
fans 0
comment 0
visits 26652
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
javascript基础(定义语句,表达方式,输出方式,数据类型,函数匿名函数)2019年10月21日
渊的博客
Original
747 people have browsed it

1、javascript输出

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript基础</title>
</head>
<body>

</body>
</html>
<script>
alert('hello javascript');
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行效果图

alert.png

2、定义语句

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript基础</title>
</head>
<body>

</body>
</html>
<script>
var age=26;
if(age>18){
    alert('您已成年');
}else{
    alert('您还未成年');
}
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

var.png

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript基础</title>
</head>
<body>

</body>
</html>
<script>
var age=16;
if(age>18){
    alert('您已成年');
}else{
    alert('您还未成年');
}
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

var1.png

 

3、变量的数据类型

demo.html

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript数据类型</title>
    <script src="index.js"></script>
</head>
<body>

</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

number数据类型

实例

var age=18;
alert(typeof(age));

运行实例 »

点击 "运行实例" 按钮查看在线实例

typeof.png

String 数据类型

实例

var name='php.cn';
alert(typeof(name));

运行实例 »

点击 "运行实例" 按钮查看在线实例

string.png

boolean数据类型

实例

var result=age>26;

alert(typeof(result));

运行实例 »

点击 "运行实例" 按钮查看在线实例

boolean.png

复杂数据类型

实例

var obj=new Object();
alert(typeof(obj));

运行实例 »

点击 "运行实例" 按钮查看在线实例

object.png

复杂数据类型

实例

var arr=[1,2,3,4,5,6,7];
alert(typeof(arr));

运行实例 »

点击 "运行实例" 按钮查看在线实例

object.png

Console.log

实例

var arr=[1,2,3,4,5,6,7];
console.log(arr);

运行实例 »

点击 "运行实例" 按钮查看在线实例

 console.png

Let 输出

实例

let name1="abc";
var name2="def";
console.log(name1);
console.log(name2);

运行实例 »

点击 "运行实例" 按钮查看在线实例

let.png


定义函数

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript数据类型</title>
    <script src="index.js"></script>
</head>
<body>

</body>
</html>
<script>
    // 定义函数
function func(){
 var num1=2019;
 var num2=2020;
 var sum=num1+num2;
 return sum;
}
var res=func();
alert(res);
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

function.png

定义形参函数

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript数据类型</title>
    <script src="index.js"></script>
</head>
<body>

</body>
</html>
<script>
    // 定义函数
function func(num1,num2){
 var sum=num1+num2;
 return sum;
}
var res=func(2018,2019);
alert(res);
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

形参.png

定义匿名函数

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>javascript数据类型</title>
    <script src="index.js"></script>
</head>
<body>

</body>
</html>
<script>
    // 定义函数
function func(num1,num2){
 var sum=num1+num2();
 return sum;
}
var res=func(2018,function(){
return 2019;
});
alert(res);
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例

匿名函数.png

Correction status:qualified

Teacher's comments:js , 很有意思, 也值得花点精力学
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!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post