16-9-练习

Posted zhangyu666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16-9-练习相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body 
            font-family: "Microsoft YaHei", serif;
        

        body, dl, dd, p, h1, h2, h3, h4, h5, h6 
            margin: 0;
        

        ol, ul, li 
            margin: 0;
            padding: 0;
            list-style: none;
        

        img 
            border: none
        
    </style>
</head>
<body>

<script>
    a();
    var a = function () 
        alert(1)
    ;
    a();
    function a() 
        alert(2)
    
    a();
    var a =function () 
        alert(3)
    ;
    a();
    
    // 2113
    // 1定义
    //     function f() 
    //         alert(2)
    //     
    // 2执行
    //     a();  2
    //     a = function () 
    //         alert(1)
    //     ;
    //     a();  1
    //     a();  1
    //     a = function () 
    //         alert(3)
    //     
    //     a();  3

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

 

以上是关于16-9-练习的主要内容,如果未能解决你的问题,请参考以下文章

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习

练习_使用Lambda表达式无参数无返回值的练习练习_使用Lambda表达式有参数有返回值的练习

Python输入输出练习,运算练习,turtle初步练习

征服指针——指针练习