js函数及函数的基本调用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js函数及函数的基本调用相关的知识,希望对你有一定的参考价值。
1.基本语法
栗子:
<script>
function sayhello(){
console.log("hello");
}
sayhello();//函数调用
</script>
2.带参函数
<script>
function myfunction(num1,num2){
var result=num1+num2;
alert(result);
}
mufunction(2,2);//弹出结果4
</script>
以上是关于js函数及函数的基本调用的主要内容,如果未能解决你的问题,请参考以下文章
javascript--函数的声明及调用/JS中代码执行顺序