isEven()

Write a function isEven() which takes a single numeric argument and returns true if the number is even, and false otherwise.

factorial()

Write a function factorial() which takes a single numeric argument and returns the factorial of thaat number.

kebabToSnake()

Write a function kebabToSnake() which takes a single kebab-cased string argument and returns the snake_cased version.