码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 中的 instanceof 方法

时间:2019-10-30 15:13:11      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:color   ber   基本   类型   new   string   utf-8   ring   type   

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


<script>
var s="hello";
var i=8;
// typeof 只能判断基本数据类型;
alert(typeof (s));
alert(typeof (i));

var s2=new String("hello2");
alert(typeof(s2));
alert( s2 instanceof String);

var n=new Number(2);
alert(typeof (n));
alert( n instanceof String);

</script>
</body>
</html>

JavaScript 中的 instanceof 方法

标签:color   ber   基本   类型   new   string   utf-8   ring   type   

原文地址:https://www.cnblogs.com/gerenboke/p/11764976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!