This commit is contained in:
2026-01-27 10:17:27 -05:00
parent de1dcaceef
commit a275364cd1
3 changed files with 286 additions and 65 deletions

View File

@@ -0,0 +1,9 @@
const sum = add(5, 10);
console.log("5 + 10 =", sum);
const greeting = greet("World");
console.log(greeting);
const response = fetch("https://httpbin.org/get");
console.log("Fetch OK:", response.ok);
console.log("Fetch Status:", response.status);