gistlib
index.tsx// Function to add two numbers function penjumlahan(a, b) { return a + b; } // Example usage console.log(penjumlahan(5, 3)); // Output: 8 143 chars8 lines
// Function to add two numbers function penjumlahan(a, b) { return a + b; } // Example usage console.log(penjumlahan(5, 3)); // Output: 8
gistlibby LogSnag