reading-notes

These are my reading notes for Code Fellows


Project maintained by taegorov Hosted on GitHub Pages — Theme by mattgraham

Table of Contents

Home

Reading Day 1

Reading Day 2

Read04

Read05

Read06a

Read07

Comparison and Logical Operators

== IS EQUAL TO

!= IS NOT EQUAL TO

=== STRICT EQUAL TO

!== STRICT NOT EQUAL TO

> GREATER THAN

< LESS THAN

>= GREATER THAN OR EQUAL TO

<= LESS THAN OR EQUAL TO

Logical Operators

The below are Logical Operators:

&& is a Logical And

|| is a Logical Or

! is a Logical Not

Loops

A code block will run repeatedly (in a loop) until it returns the condition of false.

for runs a code a certain number of times

while code will continue to run as long as a condition is true

do...while like while, with some caveats

Loop Counters