Skip to content

Commit

Permalink
Day 21: Intro of js
Browse files Browse the repository at this point in the history
  • Loading branch information
uttu-316 committed Oct 31, 2022
1 parent c46cacd commit 7414a01
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions javascript/Day21/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
var number_of_apples = 10;

var fullName = "Utkarsh Gupta";

var CountryName = "India";

var NUMBER_OF_STATES = 29;

var a = 10;
var A = 10;
var numberOfStates = 29;

var andj233$di = "djiv";

var x = 10;
var y = 20;

var sum;

sum = x + y;

sum = x - y;

sum = x * y;

sum = y / x;

sum = y % x;

false || false || true;
//true

true && false;
// false

if (true && false) {
}

for (var x = 0; x < 4; x++) {}

0 comments on commit 7414a01

Please sign in to comment.