## Nasa ### Instructions Create a `nasa` function that takes a number `N` as a parameter and returns a string with all numbers from 1 to the `N` separated by whitespace, with three exceptions: - For numbers divisible by 3, add 'NA'. - For numbers divisible by 5, add 'SA'. - For the number that are divisible by 3 and 5 add 'NASA'. ### Notions - [nan-academy.github.io/js-training/examples/loops](https://nan-academy.github.io/js-training/examples/loops.js) - [nan-academy.github.io/js-training/examples/recursion](https://nan-academy.github.io/js-training/examples/recursion.js)