Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESEdaca

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
daca

Descripción:
primer test de la serie

Autor:
olg
(Otros tests del mismo autor)

Fecha de Creación:
20/08/2023

Categoría:
Idiomas

Número preguntas: 27
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
let n=5+2**2*3 17 117649 84 42.
let x=3, x=x*x x+=x x*=2 x**=x x**=2.
let str="1024"; str=-str; "-1024" NaN -1024 "1024".
let n=10; let m=n++; n:11, m:10 n:10, m:11 n:11, m:11 n:10, m:10.
20&&5 5 20 true 25.
true&&"false" 0 false "false" true.
let str="10"; let a=(str=10); let b=(str==10); let c=(str===10); a:10; b:null; c:null b:a10; b:false; c:true a:10; b:true; c:false a:10; b:10; c:10.
¿Qué operador usar si queremos verificar si dos vars almacenan distintos valores? =! <> diff !==.
"abcd">"dc" false -1 "abcd" true.
confirm crea cuadro de diálogo, ¿qué valor devuelve al cerrar ventana? cadena ingresada false depende de opción seleccionada true.
Método para que el usuario ingrese cadena confirm alert fill prompt.
let choice=confirm("¿Estás listo?")?"true":"false" true "true" "ok" false.
true&&false||true false 1 true null.
6*2<20-15 true NaN -9 false.
days en orden inverso for(let i=days.length-1; i>=0; i--) console.log(days[i]); for(let i=days.length-1; i>0; i--) console.log(days[i]); for(let i=days.length; i>0; i--) console.log(days[i]); for(let i=days.length; i>0; i--) console.log(i);.
for(let x=10; x>1; x-=2) console.log("hello"); 10 5 9 4.
let steps=[3, 2, 1]; for(let n of steps) console.log(n); "[3, 2, 1]" 1 2 3 0 1 2 3 2 1.
let name; if(test){ name="Alice"; }else{ name="Bob"; } let name=test ? "Alice" : "Bob"; let name=(test)("Alice")("Bob"); let name=test:"Alice"?"Bob"; let name=if test?"Alice":"Bob";.
ternario typeof asginacion = incremental ++ condicional ? :.
instruccion en bucle destinada solo a recorrer todas las llaves del objeto for ... of if ... else do ... while for ... in.
let teams=["Madrid", "Barca", "Atleti", "Sevilla"]; ¿cuál mostrará dos equipos for (let i=3; i<teams.length; i++) console.log(teams[+i]) for(let n in teams) console.log(n); for(let i=0; i<teams.length; i+=2) console.log(teams[i]); for(let n of teams) console.log(n);.
let x=100; if(x<100) x=10; console.log(x) 100 10 nada false.
if(!a) if(a==false) if(a===false) if(!!a) if(a).
let car={make: "Citroen", model:"DS"}; for (let f in car) console.log(f) "Citroen" "DS" "make: Citroen" "model: DS" "car" "make" "model".
for(let a=4; a<4; a++){ console.log("test"); } 1 Nada en absoluto 4 3.
if(counter<=10){ if(counter>=10){ console.log(1); } } if(false) console.log(1); if(counter==10) console.log(1); if(counter>=10) console.log(1); if(true) console.log(1);.
no instruccion en bucle do...while if...else for...of for...in.
Denunciar test Consentimiento Condiciones de uso