Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
This comment is hidden because it contains spoiler information about the solution
Don't use global vars. They keep their values between tests and if you call your function several times it will fail in Atom/repl too.
This comment is hidden because it contains spoiler information about the solution
i am having trouble passing the basic tests in JavaScript.
in your example:
const point = (a, b) => {
// your code
};
typeof(point(a, b)) === "function"
the typeof in this case would not be function unless you were returning a function, but instructions specificaly ask this fst() or snd() function to return a number. For this reason I fail on basic test for fst(point(20, 22) and snd(point(20, 22).
Am I misunderstanding something?
In order for typeof() to return "function" in any of these cases I believe the test should be done without parameters/arguments.
For example: typeof(fst)
For example: typeof(snd)