JavaScript 是一种动态类型的编程语言,它支持多种不同的数据类型
▥前端
𝄐 0
javascript的数据类型,js数据类型有哪些?,js数据类型有哪些,js的数据类型有几种,js的数据类型有哪些?,js中的数据类型有几种
JavaScript 是一种动态类型的编程语言,它支持多种不同的数据类型。下面是 JavaScript 中的主要数据类型及其示例:
1. 基本数据类型
- 数字(Number):例如 1, 2.5, -3。
- 字符串(String):例如 "hello", 'world'。
- 布尔(Boolean):true 或 false。
2. 复合数据类型
- 对象(Object):例如 {name: 'John', age: 30}。
- 数组(Array):例如 [1, 2, 3]。
- 函数(Function):例如 function add(a, b) { return a + b; }。
3. 特殊数据类型
- null:表示一个空对象指针。
- undefined:表示未定义的值。
- symbol:用于创建唯一标识符。
以下是一些示例:
javascript
// 数字
let num = 42;
console.log(num); // 输出 42
// 字符串
let str = "Hello, world!";
console.log(str); // 输出 Hello, world!
// 布尔
let bool = true;
console.log(bool); // 输出 true
// 对象
let obj = { name: "John", age: 30 };
console.log(obj.name); // 输出 John
// 数组
let arr = [1, 2, 3];
console.log(arr[0]); // 输出 1
// 函数
function add(a, b) {
return a + b;
}
console.log(add(1, 2)); // 输出 3
// null 和 undefined
let x = null;
console.log(x); // 输出 null
let y;
console.log(y); // 输出 undefined
// symbol
const sym = Symbol("foo");
console.log(typeof sym); // 输出 symbol
JavaScript 是一种动态类型的编程语言,它支持多种不同的数据类型。下面是 JavaScript 中的主要数据类型及其示例:
1. 基本数据类型
- 数字(Number):例如 1, 2.5, -3。
- 字符串(String):例如 "hello", 'world'。
- 布尔(Boolean):true 或 false。
2. 复合数据类型
- 对象(Object):例如 {name: 'John', age: 30}。
- 数组(Array):例如 [1, 2, 3]。
- 函数(Function):例如 function add(a, b) { return a + b; }。
3. 特殊数据类型
- null:表示一个空对象指针。
- undefined:表示未定义的值。
- symbol:用于创建唯一标识符。
以下是一些示例:
javascript
// 数字
let num = 42;
console.log(num); // 输出 42
// 字符串
let str = "Hello, world!";
console.log(str); // 输出 Hello, world!
// 布尔
let bool = true;
console.log(bool); // 输出 true
// 对象
let obj = { name: "John", age: 30 };
console.log(obj.name); // 输出 John
// 数组
let arr = [1, 2, 3];
console.log(arr[0]); // 输出 1
// 函数
function add(a, b) {
return a + b;
}
console.log(add(1, 2)); // 输出 3
// null 和 undefined
let x = null;
console.log(x); // 输出 null
let y;
console.log(y); // 输出 undefined
// symbol
const sym = Symbol("foo");
console.log(typeof sym); // 输出 symbol
本文地址:
/show-270155.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。