Skip to content

Instantly share code, notes, and snippets.

@akrami
akrami / 01.js
Last active July 8, 2024 08:33
Code Signal Arcade - Intro level solutions (javascript)
/*
Write a function that returns the sum of two numbers.
*/
function add(param1, param2) {
return param1+param2;
}