diff --git a/test/Aceer121_identity.solutions.js b/test/Aceer121_identity.solutions.js new file mode 100644 index 0000000..d1cefc6 --- /dev/null +++ b/test/Aceer121_identity.solutions.js @@ -0,0 +1,2 @@ +// /Write a function identity that takes an argument and returns that argument +const identity = (argument) => argument;