Skip to content

Javascript kata to return true if all the function parameters are of the Number type.

Notifications You must be signed in to change notification settings

ouadie-lahdioui/for-the-sake-of-argument

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

JAVASCRIPT KATA : For the sake of argument !

Description:

Write a function named numbers that returns true if all the parameters it is passed are of the Number type. Otherwise, the function should return false. The function should accept any number of parameters.

Example usage:

numbers(1, 4, 3, 2, 5); // true
numbers(1, "a", 3); // false
numbers(1, 3, NaN); // true

Solution : numbers.js

Source : codewars

About

Javascript kata to return true if all the function parameters are of the Number type.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published