diff --git a/Solutions/asiddiqi_solutions.js b/Solutions/asiddiqi_solutions.js new file mode 100644 index 0000000..edc183a --- /dev/null +++ b/Solutions/asiddiqi_solutions.js @@ -0,0 +1,8 @@ +// Write a function identity that takes an argument and returns that argument +function identity(variable_name) { + return variable_name; +} +// Write a binary function addb that takes two numbers and returns their sum +function addb(a, b) { + return a + b; +}