Back to Freecodecamp

Step 1

curriculum/challenges/english/blocks/workshop-logic-checker-app/6909ed80e1c195f49564edac.md

latest508 B
Original Source

--description--

In this workshop, you'll learn how to work with conditional statements and comparison operators.

Begin by declaring a variable named truthyOrFalsy and assign it the boolean value true.

--hints--

You should have a variable named truthyOrFalsy.

js
assert.exists(truthyOrFalsy);

You should assign true to your truthyOrFalsy variable.

js
assert.isTrue(truthyOrFalsy);

--seed--

--seed-contents--

js
--fcc-editable-region--

--fcc-editable-region--