📅  最后修改于: 2022-03-11 15:02:56.787000             🧑  作者: Mango
// 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