定义变量 关键字var
- var 的作用域比较大 全局变量
- 可以重复定义 (变量名可以重复使用)最下面的值算
定义方式
-
var a=12;
-
var b="你好";
let 定义方式
-
let是局部变量
- 在大括号里定义外面访问不了
- 不可以重复定义
const 定义方式
- const 的值不能给你改改
- const 定义的值是常量
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-数据类型</title>
</head>
<body>
</body>
<script>
//原始数据类型
//number类型
alert(typeof 3);
alert(typeof 3.14);
//String 类型
alert(typeof "A");
alert(typeof 'hello');
// Boolean 类型
alert(typeof true);
alert(typeof false);
//object
alert(typeof null);
//undefined
var a;
alert(typeof a);
</script>
</html>
定义变量
文章来源:https://www.toymoban.com/news/detail-741696.html
文章来源地址https://www.toymoban.com/news/detail-741696.html
到了这里,关于JS_变量定义的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!