The browser storage localStorage is not available. Either your browser does not support it or you have disabled it or the maximum memory size is exceeded. Without localStorage your solutions will not be stored.
Even numbers
The following task can be solved by an interaction of strict equality and the modulo operator.
Exercise
Write a function
Example:
isEven
that checks if a passed number is even.
If the given number is even, true
should be returned, otherwise false
.Example:
isEven(2)
should return true
and isEven(3)
should
return false
.
+ Solution
function isEven(num) {
return num % 2 === 0;
}