Created
March 4, 2025 13:25
-
-
Save Kadajett/7295c2be0f3f9c86296a3081135aeffe to your computer and use it in GitHub Desktop.
Scribe Code Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Write a JavaScript function that takes two numbers as input and returns their sum. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function add(a, b) { | |
| return a + b; | |
| } | |
| console.log(add(2, 3)); // Expected output: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment