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) { + +} +```