Untitled
unknown
plain_text
9 months ago
140 B
18
Indexable
// Arrow function ile toplama
const toplama = (a, b) => a + b;
// Test
let sonuc = toplama(3, 5);
console.log("Sayilarin toplami:", sonuc);Editor is loading...
Leave a Comment
// Arrow function ile toplama
const toplama = (a, b) => a + b;
// Test
let sonuc = toplama(3, 5);
console.log("Sayilarin toplami:", sonuc);