JavaScript 中的函數可以重複使用,用法如下:函數宣告:使用 function 關鍵字聲明,接收參數並傳回結果。函數表達式:使用 const 聲明,接收參數並使用箭頭符號 (=>) 傳回結果。自呼叫函數:使用立即呼叫函數表達式 (IIFE) 聲明,在定義時立即執行。類別方法:在類別定義中聲明,通常用於物件的方法。
JavaScript 中的函數是一種程式碼區塊,可以重複使用,並且可以傳遞參數並傳回結果。
<code class="javascript">函数名(参数1, 参数2);</code>參數函數可以接收參數,這些參數在函數體內當作變數使用。 傳回值函數可以使用
return 關鍵字傳回一個值。
函數宣告:
<code class="javascript">function sayHello(name) { return `Hello, ${name}!`; } const greeting = sayHello("Bob"); console.log(greeting); // 输出:"Hello, Bob!"</code>
#函數表達式:
<code class="javascript">const multiply = (a, b) => { return a * b; }; const product = multiply(10, 5); console.log(product); // 输出:50</code>
自呼叫函數:
<code class="javascript">(function() { console.log("立即执行!"); })(); // 输出:"立即执行!"</code>
類別方法:
<code class="javascript">class Person { constructor(name) { this.name = name; } greet() { console.log(`Hello, my name is ${this.name}!`); } } const person = new Person("Alice"); person.greet(); // 输出:"Hello, my name is Alice!"</code>
以上是js中function的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!