Example 1
Girdi
function hello(name) {
// say hi
console.log('Hello ' + name);
}
hello('ToolsOnline');
Çıktı
Minify JavaScript code quickly in your browser.
Bazı araçlar tarayıcınızda çalışır. Bazı özellikler sunucu işlemesi gerektirebilir.
function hello(name) {
// say hi
console.log('Hello ' + name);
}
hello('ToolsOnline');
const items = [1, 2, 3];
items.forEach((x) => {
if (x % 2 === 0) {
console.log(x);
}
});