Generation

generate functionSun, 16 Jul 2023

Evaluar el valor de verdad de la siguiente expresión si a=10, b=12 y c=20: (𝑎 < 𝑏) | (𝑏 >= 𝑐)

function add(a, b, c){ return (a < b) | (b >= c) } add(1, 2, 4)

TypeScript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code