Challenge
Home
About
Contact
Welcome to Step 4
Here you will be challenged to explain code snippets.
Code Explanation Question
function add(a, b) { return a + b; }
Adds two numbers and returns the result.
Subtracts b from a and returns the result.
Multiplies a and b and returns the result.
Concatenates a and b into a string.
Divides a by b and returns the result.
Submit