Completed
Inequality Operator
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Learn JavaScript - Full Course for Beginners
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 Running JavaScript
- 3 Comment Your Code
- 4 Declare Variables
- 5 Storing Values with the Assignment Operator
- 6 Initializing Variables with the Assignment Operator
- 7 Uninitialized Variables
- 8 Case Sensitivity in Variables
- 9 Add Two Numbers
- 10 Subtract One Number from Another
- 11 Multiply Two Numbers
- 12 Dividing Numbers
- 13 Increment
- 14 Decrement
- 15 Decimal Numbers
- 16 Multiply Two Decimals
- 17 Divide Decimals
- 18 Finding a Remainder
- 19 Augmented Addition
- 20 Augmented Subtraction
- 21 Augmented Multiplication
- 22 Augmented Division
- 23 Declare String Variables
- 24 Escaping Literal Quotes
- 25 Quoting Strings with Single Quotes
- 26 Escape Sequences
- 27 Plus Operator
- 28 Plus Equals Operator
- 29 Constructing Strings with Variables
- 30 Appending Variables to Strings
- 31 Length of a String
- 32 Bracket Notation
- 33 Understand String Immutability
- 34 Find the Nth Character
- 35 Find the Last Character
- 36 Find the Nth-to-Last Character
- 37 Word Blanks
- 38 Arrays
- 39 Nest Arrays
- 40 Access Array Data
- 41 Modify Array Data
- 42 Access Multi-Dimensional Arrays
- 43 push()
- 44 pop()
- 45 shift()
- 46 unshift()
- 47 Shopping List
- 48 Write Reusable with Functions
- 49 Arguments
- 50 Global Scope
- 51 Local Scope
- 52 Global vs Local Scope in Functions
- 53 Return a Value from a Function
- 54 Undefined Value returned
- 55 Assignment with a Returned Value
- 56 Stand in Line
- 57 Boolean Values
- 58 If Statements
- 59 Equality Operator
- 60 Strict Equality Operator
- 61 Comparing different values
- 62 Inequality Operator
- 63 Strict Inequality Operator
- 64 Greater Than Operator
- 65 Greater Than Or Equal To Operator
- 66 Less Than Operator
- 67 Less Than Or Equal To Operator
- 68 And Operator
- 69 Or Operator
- 70 Else Statements
- 71 Else If Statements
- 72 Logical Order in If Else Statements
- 73 Chaining If Else Statements
- 74 Golf Code
- 75 Switch Statements
- 76 Default Option in Switch Statements
- 77 Identical Options in Switch Statements
- 78 Replacing If Else Chains with Switch
- 79 Returning Boolean Values from Functions
- 80 Return Early Pattern for Functions
- 81 Counting Cards
- 82 Build Objects
- 83 Dot Notation
- 84 Bracket Notation
- 85 Variables
- 86 Updating Object Properties
- 87 Add New Properties to Object
- 88 Delete Properties from Object
- 89 Objects for Lookups
- 90 Testing Objects for Properties
- 91 Manipulating Complex Objects
- 92 Nested Objects
- 93 Nested Arrays
- 94 Record Collection
- 95 While Loops
- 96 For Loops
- 97 Odd Numbers With a For Loop
- 98 Count Backwards With a For Loop
- 99 Iterate Through an Array with a For Loop
- 100 Nesting For Loops
- 101 Do...While Loops
- 102 Profile Lookup
- 103 Random Fractions
- 104 Random Whole Numbers
- 105 Random Whole Numbers within a Range
- 106 parseInt Function
- 107 parseInt Function with a Radix
- 108 Ternary Operator
- 109 Multiple Ternary Operators
- 110 var vs let
- 111 var vs let scopes
- 112 const Keyword
- 113 Mutate an Array Declared with const
- 114 Prevent Object Mutation
- 115 Arrow Functions
- 116 Arrow Functions with Parameters
- 117 Higher Order Arrow Functions
- 118 Default Parameters
- 119 Rest Operator
- 120 Spread Operator
- 121 Destructuring Assignment: Objects
- 122 Destructuring Assignment: Nested Objects
- 123 Destructuring Assignment: Arrays
- 124 Destructuring Assignment with Rest Operator to Reassign Array
- 125 Destructuring Assignment to Pass an Object
- 126 Template Literals
- 127 Simple Fields
- 128 Declarative Functions
- 129 class Syntax
- 130 getters and setters
- 131 import vs require
- 132 export
- 133 * to Import
- 134 export default
- 135 Import a Default Export