函数

作者: 陈庆香 | 来源:发表于2018-07-31 17:46 被阅读0次

    // 函数定义

    function test() {

    console.log('test')

    }

    // 函数调用

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    test();

    /**

    *  两个加数相加

    * num1 加数

    * num2 加数

    */

    function add(num1, num2) {

    var sum = num1 + num2;

    return sum;

    }

    // var result = add('100',200);

    // console.log('result',result);

    var x = 300;

    var y = 500;

    var result2 = add(x, y);

    console.log('result2', result2);

    /**

    * 炒菜的方法

    * c1 炒菜的原料

    * c2 炒菜的原料

    */

    function cook(c1, c2) {

    var food = c1 + '炒' + c2;

    console.log(food);

    }

    var aa = '番茄';

    var bb = '鸡蛋';

    cook(aa, bb);

    相关文章

      网友评论

          本文标题:函数

          本文链接:https://www.haomeiwen.com/subject/kmghvftx.html