⊗jsPmCdShCS 123 of 505 menu

Złożone warunki w skróconej formie w JavaScript

W skróconej formie można używać operatorów && i ||. Spójrz na przykład:

let test1 = true; let test2 = true; if (test1 && test2) { console.log('+++'); } else { console.log('---'); }

Kolejny przykład:

let test1 = true; let test2 = true; if (test1 || test2) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; if (test1 === true && test2 === true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; if (test1 === true && test2 !== true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; if (test1 !== true && test2 !== true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; if (test1 !== false && test2 === true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; let test3 = true; if (test1 === true && test2 === true && test3 === true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; let test3 = true; if (test1 === true || test2 === true && test3 === true) { console.log('+++'); } else { console.log('---'); }

Przepisz następujący kod w skróconej formie:

let test1 = true; let test2 = true; let test3 = true; if (test1 === true || test2 === false && test3 === false) { console.log('+++'); } else { console.log('---'); }
Polski
AfrikaansAzərbaycanБългарскиবাংলাБеларускаяČeštinaDanskDeutschΕλληνικάEnglishEspañolEestiSuomiFrançaisहिन्दीMagyarՀայերենIndonesiaItaliano日本語ქართულიҚазақ한국어КыргызчаLietuviųLatviešuМакедонскиMelayuမြန်မာNederlandsNorskPortuguêsRomânăРусскийසිංහලSlovenčinaSlovenščinaShqipСрпскиSrpskiSvenskaKiswahiliТоҷикӣไทยTürkmenTürkçeЎзбекOʻzbekTiếng Việt
Wykorzystujemy pliki cookie do działania strony, analizy i personalizacji. Przetwarzanie danych odbywa się zgodnie z Polityką prywatności.
zaakceptuj wszystkie dostosuj odrzuć