boa tarde gente. estou a candidatar-me para um Boot Camp de programação e preciso de realizar algumas tarefas obrigatórias e estou com duvidas em uma. será que me podem ajudar?
a tarefa é esta:
Show me the code!
Some functions are great for asking yes or no questions. Take for instance the includes, startsWith, endsWith functions you can use in any string.
What do you expect these to return. A boolean, right? True/False.
Take a look at how perfect those names are for this type of question, they almost force you to answer in a binary form, yes or no.
Let’s try it ourselves. And by ourselves we mean yourself: declare a function called isEven that takes a number as an argument and returns a boolean. Go!
o que eu fiz foi o seguinte:
var isEven = function(number) {
return number % 2;
};
var result = isEven(10);
if (result ===0) {
console.log(‘true’); }
else{
console.log(‘false’);
}
e a mensagem de erro que aparece é esta:
Code is incorrect
You should return the result of an expression that evaluates if a number is even