DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Functions — Example 84

Quick explanation + ready code for: Functions.

LiveCode Functions Back to examples
Back to language
Syntax: Functions in LiveCode. ID: #84

Code

function add(a,b){ return a+b; }
console.log(add(6, 9));

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.