Skip to content

Commit b8678ee

Browse files
committed
first commit specially for the JavaScript Programming and Learning and Practicing here
0 parents  commit b8678ee

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# intro-to-js-1

first.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log(3);

jaan.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log(7);

variable.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// vary + able = variable (changeable)
2+
3+
var price = 21;
4+
var age = 13;
5+
var temperature = 37;
6+
7+
var born = 1993;
8+
var village = 'Gorma';
9+
var postOffice = 'Barhatta';
10+
var district = 'Netrokona';
11+
12+
console.log(age, born);

0 commit comments

Comments
 (0)