Quick actions

cmd+k|ctrl+k

Navigation

Languages

Variable Scope

Snippet info

Language

JavaScript

Visibility

public

Author

nacht777

Created

2022-07-27T04:29:01.702444Z

Updated

2022-07-27T04:29:16.743905Z

console.log("Hello World!");

function multiply(num) {
    let total = num * num;
    return total;
}

let total = 9;
let number = multiply(20);

console.log(total);
INFO