GithubHelp home page GithubHelp logo

codecademyjs's Introduction

CodecademyJS

Using the let keyword, declare a variable named sale and assign the value of true to it.

let sale = true;

Create an if statement and provide the if statement a condition of sale.

if (sale) {

}

Inside the code block of the if statement, console.log() the string 'Time to buy!'.

if (sale) {
  console.log('Time to buy!')
 }

The if statement ran. Now below the sale variable declaration, but before the if statement, reassign sale to false. Run your code...(will result in error).

let sale = true;

let sale = false;

if (sale) {
  console.log('Time to buy');
 }

Add an else statement to the existing if statement. Inside the code block of the else statement, console.log() the string 'Time to wait for a sale.'

let sale = true;

sale = false;

if(sale) {
 condole.log('Time to buy!');
   } else {
     console.log('Time to wait for a sale.')
    }

Comparison Operators

Using let, create a variable named hungerLvl and set it equal to 7.

let hungerLvl = 7;

Write an if...else statement using a comparison operator. The condition should check if hungerLvl is greater than 7. If true, console.log() 'Time to eat!'. Otherwise, console.log() 'We can eat later!'.

let hungerLvl = 7;
if (hungerLvl > 7) {
 console.log('Time to eat!');
} else {
 console.log('We can eat later!);
};

Logical Operators

codecademyjs's People

Contributors

gabyc0 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.