函数类型和数据类型
函数类型
数据类型
1.原始类型
number string boolean underfined null
js
‘’’
console.log(123, typeof 123);
console.log(“php”, typeof “php”);
console.log(true, typeof true);
console.log(undefined, typeof undefined);
console.log(null, typeof null);
‘’’
2.引用类型
array object function
2.1 array
js
‘’’
const arr = [“手机”, 2, 5000];
console.log(arr);
console.log(arr[0]);
console.log(arr[1]);
console.log(arr[2]);
console.log(typeof arr);
console.log(Array.isArray(arr));
‘’’
2.2 object
js
‘’’
console.log(123, typeof 123);
console.log(“php”, typeof “php”);
console.log(true, typeof true);
console.log(undefined, typeof undefined);
console.log(null, typeof null);
‘’’
2.3 function
2.3.1 value
js
‘’’
function f2() {
let a = 1;
return function () {
return a++;
};
}
console.log(f2());
const f = f2();
console.log(f());
console.log(f());
console.log(f());
console.log(f());
console.log(f());
console.log(f());
‘’’
2.3.2 object
js
‘’’
function f1(callback) {
console.log(callback());
}
f1(function () {
return “hell 朱老师”;
});
‘’’
下一篇: 函数类型和数据类型
推荐阅读
-
Oracle--plsql复合数据类型
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
玩PHP必了解的PHP常用符号和函数_PHP教程
-
MySQL数据类型与建库策略的剖析
-
MSsql数据库修改数据类型Float到decimal的问题处理
-
PHP和MySQL的删除空白函数介绍
-
HTML5实战与剖析之媒体元素(4、检测编解码器的支持和Audio构造函数)
-
mssql sqlserver null数据类型专题
-
html表单验证证件类型和证件号码匹配,并验证问题_html/css_WEB-ITnose
-
Redis基础入门,Redis的优点也特点,Redis五种数据类型