From c7fda9a1dc739587f27a3075da077b24cc059bba Mon Sep 17 00:00:00 2001 From: root Date: Mon, 2 Oct 2023 13:19:06 +0100 Subject: [PATCH] feat: add exercise jabs --- subjects/jabs/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 subjects/jabs/README.md diff --git a/subjects/jabs/README.md b/subjects/jabs/README.md new file mode 100644 index 000000000..21243aea1 --- /dev/null +++ b/subjects/jabs/README.md @@ -0,0 +1,14 @@ +## jabs + + +### Instructions + +- Create a function named `abs` that takes a number as an argument and returns its absolute value. You must make your own implementation. You must not use `Math.abs()` + +### Expected function + +```js +function abs(n) { + +} +``` \ No newline at end of file