Blogger Information
Blog 2
fans 0
comment 0
visits 1762
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
学习搭建javascript编程环境和js的基本语法-2019年5月6日19时21分
家族公式的博客
Original
1080 people have browsed it
  1. 如何正确的声明与定义变量?

       变量及变量声明是编程语言最基本的概念,JavaScript中声明变量很简单    var(关键字)+变量名(标识符)。

2. 变量的提升是原理,如果实现的?、

JavaScript引擎工作原理: 先解析代码,获取到全部已经被声明的变量,然后再逐行执行代码

导致所有变量声明语句,会直接提升到脚本(函数)头部,这种独有的现象叫:变量提升

变量提升的根本原因是变量声明与赋值的分离,比如 var a = 2;这个代码是分两步进行的。首先是 var a 这一部分的变量声明,这个过程是在代码编译时进行的。然后是 a = 2; 这一部分的变量赋值,这个过程是在代码执行时进行的。
3. 分支结构有几种, 多分支与switch的实现过程

在JavaScript编程中分支结构有四种即单分支(只能处理满足条件的情况)双分支(处理不满足条件的情况,可以用三元运算符简化)多分支(if (条件) {...} else if(条件){ ... } else {...}`)switch()结构(简化多分支,更多用在单值判断的场景)

//多分支的实现过程
var zhanghao = "admin";
var mima="123"
var res = '';


if (zhanghao =admin && mima= "123") {
res = '恭喜你,登陆成功';
} else if (zhanghao =admin && mima!= "123"){
res = '对不起密码错误';
} else if (zhanghao !=admin && mima= "123") {
res = '对不起账号错误';
} else { // 最后一个else是默认选项,可省略
res = '登陆失败';
}


console.log(res);


//switch的实现过程



var grade = 80;

switch (true) {
case grade >= 60 && grade < 80:
res = '成绩还行, 加油';
break;
case grade >= 80 && grade < 90:
res = '这是要成为学霸的节奏呀';
break;
case grade >= 90 && grade <= 100:
res = '你来讲课吧, 我下去';
break;
default:
res = '补考吧兄弟';
}


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!