Skip to content

Instantly share code, notes, and snippets.

@Kadajett
Created March 4, 2025 13:25
Show Gist options
  • Select an option

  • Save Kadajett/7295c2be0f3f9c86296a3081135aeffe to your computer and use it in GitHub Desktop.

Select an option

Save Kadajett/7295c2be0f3f9c86296a3081135aeffe to your computer and use it in GitHub Desktop.
Scribe Code Example
Write a JavaScript function that takes two numbers as input and returns their sum.
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