From 959497b0fb4f0a55ded183f2a1edac33de4d8ca7 Mon Sep 17 00:00:00 2001 From: Arcel Derosena <45231128+Aceer121@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:24:08 -0400 Subject: [PATCH] solved the identity function --- test/Aceer121_identity.solutions.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/Aceer121_identity.solutions.js 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;