-
Notifications
You must be signed in to change notification settings - Fork 2
Algoritmo Bu
- Este programa es muy simple, el truco está en entender que es un boolaneo primitivo. El programa recibir un parámetro verdadero o falso.
- Deberás comprobar que el tipo de parámetro recibido sea boolaneo.
- Para comprobar el tipo de un parámetro puedes utilizar
typeof
- Debido a que a que debes retornar true o false puedes utilizar una declaración if o simplemente retornar la sentencia que usarías en la declaración if.
¡Solución abajo!
function booWho(bool) {
return typeof bool === 'boolean';
}
// realizamos el test
booWho(null);
Utilizamos el operador typeof
para comprobar si una variable es boolanea. Si lo es retornará true
. En caso contrario, al ser otro tipo retornará falso
.
Si encuentras útil este artículo puedes dar las gracias copiando y pegando este mensaje en el chat principal: Thanks @Rafase282 for your help with Algorithm: Boo-who
NOTA: Por favor añade tu nombre de usuario solamente si has añadido contenido relevante al artículo. (Por favor no remuevas ningún nombre existente.)
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links