📜  函数 - Javascript 代码示例

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

代码示例6
[PHP]



[Python]

def helloWorld():
  print("Hello World")
  
helloWorld()

[JavaScript / JS Normal Function]

function helloWorld() {
  console.log("Hello World!");
}

helloWorld()

[JavaScript / JS Dynamic, Arrow Function]

const helloWorld = () => {
   console.log("Hello World!");
}

helloWorld()