Blogger Information
Blog 27
fans 0
comment 0
visits 20802
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
javascript基础-2019年12月16日
古城老巷丶
Original
648 people have browsed it

12月16号作业
1、javascript变量、函数的定义

js变量声明

    <script>
        // 创建JS变量,var关键字开头
        var num1=3;
        // 输出变量
        // alert(num1);
        console.log(num1);
        
        
    </script>



image.png


函数定义

        // 定义函数
        function hello1() {
            // 控制台打印
            console.log('你好1');

        }
        // 调用JS函数
        hello1();
        // 定义函数带参
        function hello2(a) {
            // 控制台打印
            console.log(a);

        }
        // 调用JS函数
        hello2('你好2');


image.png

2、javascript流程控制if else switch

2.1:if

image.png

if else

image.png

if else if

image.png

switch

image.png



3、javascript三种循环

for

image.png

while

image.png

do while

image.png


4、数据类型转换:parseInt、isNaN函数的使用

parseInt类型转换为整型,isNaN判断是否转换成功

image.png



5、以上知识点各写几个案例,提交到博客上




总结:

在JS中也存在全局变量和局部变量,在函数体声明的变量在只能在函数体里使用。在函数体外定义的变量在函数体内也可以使用。

JS的流程控制和PHP没什么区别。

parseInt函数转换为整型,isNaN判断是否转换成功。



Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:js中只有函数作用域, 从es6开始就不一样了, 有了块作用域
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
Author's latest blog post