Giter Club home page Giter Club logo

mherzl-javascript-variables-challenge's Introduction

mherzl-javascript-variables-challenge

#1. var a; var b = 6; var c = a + b; // What does a equal? undefined // What does b equal? 6 // What does c equal? NaN

#2 var a = true; var b = false; var c = a + b; var d = a - b; // What does a equal? true // What does b equal? false // What does c equal? 1 // What does d equal? 1

#3 var a = true; var b = 'false'; var c = a + b; var d = a - b; // What does a equal? true // What does b equal? "false" // What does c equal? truefalse // What does d equal? error

#4 var a = "3"; var b = "4"; var c = "five"; var d = a + b; var e = a * b; var f = a + c; var g = a * c; // What does d equal?34 // What does e equal?12 // What does f equal?3five // What does g equal? error

mherzl-javascript-variables-challenge's People

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.