首页 > 试题广场 >

下面属于javascript基本数据类型的有?

[不定项选择题]
下面属于javascript基本数据类型的有?
  • 字符串
  • 数字
  • null
  • undefined
推荐
ABCD
下面内容来自:http://www.ecma-international.org/ecma-262/5.1/#sec-8.7
A primitive value is a member of one of the following built-in types: Undefined, Null, Boolean, Number, and String; an object is a member of the remaining built-in type Object; and a function is a callable object.
ECMAScript defines a collection of built-in objects that round out the definition of ECMAScript entities. These built-in objects include the global object, the Object object, the Function object, the Array object, the String object, the Boolean object, the Number object, the Math object, the Date object, the RegExp object, the JSON object, and the Error objects Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError and URIError.
编辑于 2015-01-26 15:14:31 回复(2)
js七种数据类型:Sting  Object  null  undefined  Array  Boolean  Number
js五种基本类型:String Boolean Number null undefined
typeof六种返回格式:'string'  'number'  'object'  'function'  'boolean'  'undefined'
编辑于 2015-11-06 15:48:05 回复(9)
JavaScript中有5种简单数据类型(也称为基本数据类型): Undefined、Null、Boolean、Number和String 。还有1种复杂数据类型—— Object ,Object本质上是由一组无序的名值对组成的。
发表于 2015-09-20 11:23:18 回复(2)
难道就没有人纠结这两个汉字吗
发表于 2017-03-24 15:06:34 回复(7)

最新的 ECMAScript 标准定义了 7 种数据类型:

摘自MDN
发表于 2017-08-18 16:41:29 回复(1)
js七种数据类型:Sting  Object  null  undefined  Array  Boolean  Number
js五种基本类型:String Boolean Number null undefined
typeof六种返回格式:'string'  'number'  'object'  'function'  'boolean'  'undefined'
发表于 2017-02-27 19:18:58 回复(0)

js八种数据类型:

Sting  Object  null  undefined  Array  Boolean  Number symbol

js六种基本类型:

  • string(字符串)
  • boolean(布尔值)
  • number(数字)
  • symbol(符号)
  • null(空值)
  • undefined(未定义)


typeof六种返回格式:

'string'  'number'  'object'  'function'  'boolean'  'undefined'

检测数据类型的4种方法

typeof 、 instanceof 、 constructor 、 Object.prototype.toString.call()



发表于 2021-04-21 18:05:05 回复(0)
最新的 ECMAScript 标准定义了 8 种数据类型: 6 种原始类型,使用 typeof 运算符检查: undefined:typeof instance === "undefined" Boolean:typeof instance === "boolean" Number:typeof instance === "number" String:typeof instance === "string BigInt:typeof instance === "bigint" Symbol :typeof instance === "symbol" null:typeof instance === "object"。 Object:typeof instance === "object"。 来源https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Data_structures
发表于 2021-05-16 14:37:44 回复(0)
js八种数据类型:String Number Undefined Null Boolean Symbol(es6) Bigint(es10?) Object
js七种基本类型:String Number null undefined Boolean Symbol Bigint
js一种引用类型:  Object(包含了object, Array, Function)
可能不严谨! 勿怪.🤣
编辑于 2021-03-06 13:59:04 回复(0)
js七种数据类型:Sting  Object  null  undefined  Array  Boolean  Number
js五种基本类型:String Boolean Number null undefined
typeof六种返回格式:'string'  'number'  'object'  'function'  'boolean'  'undefined'
发表于 2019-03-04 15:31:40 回复(0)
js的数据类型分为5种原始类型(基本类型)   Undefined、Null、Boolean、Number和String 和一种引用类型 Object(其中包括 function ,array,date等等)。涉及到这些知识点还有typeof,instanceof 方法用于返回数据类型,前者多用于原始类型。特例是null会返回object。后者比如A instanceof B会返回一个Boolean值,用于判断A是否为B的实例
发表于 2017-08-07 09:28:47 回复(0)
ABCD;

JavaScript中有5种简单数据类型(也称为基本数据类型):Undefined、Null、Boolean、Number和String。还有1种复杂数据类型——Object,Object本质上是由一组无序的名值对组成的
编辑于 2015-04-01 16:40:08 回复(0)
js基本类型:Undefined,Null,Boolean,Number,String,Symbol,BigInt typeof六种返回格式:'string'  'number'  'object'  'function'  'boolean'  'undefined',(1)、"undefined"——未申明,或者变量的值即为undefined或者未初始化; (2)、"boolean"   ——如果这变量的值是布尔类型; (3)、"string"       ——值是字符串类型; (4)、"number"    ——值是数字类型; (5)、"object"    ——对象或者值为null; (6)、"function"    ——函数。
发表于 2022-11-28 01:50:32 回复(0)

值类型(基本类型):字符串(String)、数字(Number)、布尔(Boolean)、空(Null)、未定义(Undefined)、Symbol。

引用数据类型(对象类型):对象(Object)、数组(Array)、函数(Function),还有两个特殊的对象:正则(RegExp)和日期(Date)。

发表于 2023-10-08 23:17:31 回复(0)
汉字很不严谨好不好
发表于 2022-07-26 21:23:52 回复(0)
基本数据类型:Unn…SBundefined,null,number,string,boolean
发表于 2021-06-11 19:28:47 回复(0)
JS基本数据类型 Number(数值型) String(字符串) Boolean(布尔) Undefined(未定义) Null 对象类型 Object Array function
发表于 2021-03-05 23:19:43 回复(0)
25+头像 25+
5种基本类型:Undefined,Null,String,Boolean,Number,
一种复杂类型:Object(其中包括function,data,)
typeof:返回原始数据类型,特例null返回object
instanceof:用于A instanceof B 用于判断A是否为B的实例,返回一个Boolean值
发表于 2020-07-05 09:27:21 回复(0)
不知道算不算杠,,,当时想的基本类型是“number string”不是汉字“数字,字符串”
发表于 2020-05-31 01:48:51 回复(0)
没啥好说的,气的手抖
发表于 2020-04-15 00:46:41 回复(0)
这种题 真是服了 英文数字的

发表于 2019-12-28 15:13:45 回复(0)