From 2d338f91850ee97cc86cc48698d5356452fe546f Mon Sep 17 00:00:00 2001 From: hamzaelkhatri Date: Mon, 9 Oct 2023 12:41:54 +0100 Subject: [PATCH] docs(checkpoint-js):add subject of sub exercise --- subjects/sub/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 subjects/sub/README.md diff --git a/subjects/sub/README.md b/subjects/sub/README.md new file mode 100644 index 000000000..43e62bd91 --- /dev/null +++ b/subjects/sub/README.md @@ -0,0 +1,13 @@ +## sub + +### Instructions + +Write a function `Sub` that will return the substraction of two numbers. + +### Expected function + +```js +function Sub(a, b) { + +} +```