Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function add(a, b) { return a + b; } function greet(name) { console.log("Hello " + name); // Hello Levin } function randNum() { return Math.floor(Math.random() * 10) + 1; } let sum = add(2, 1); greet("Levin"); let randNum = randNum();
Contact support