📌  相关文章
📜  js 创建和调用函数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:56.787000             🧑  作者: Mango

代码示例2
// Create a function (you decide the name) that logs out the number 42 
// to the console

// Call/invoke the function

 function number(){
     console.log(42)
 }
 
 number()
//result = 42