-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
387c41a
commit d18e253
Showing
5 changed files
with
82 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
console.log('Hello', process.argv[2]); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// // var number = 123; | ||
// // var number2 = 123.25; | ||
// // console.log(typeof(number)); | ||
// // | ||
// // | ||
// // var string = '123'; | ||
// // var string1 = "123"; | ||
// // var string2 = `123`; | ||
// // console.log(typeof(string)); | ||
// // | ||
// // var boolean = true; | ||
// // var boolean2 = false; | ||
// // console.log(typeof(boolean)); | ||
// var object = { | ||
// name: "Ihor", | ||
// lastname: "Ostsapchuk", | ||
// age: 123 | ||
// }; | ||
// // console.log(typeof(object)); | ||
// // var symbol = Symbol('name'); | ||
// // console.log(typeof(symbol)); | ||
// // | ||
// // var undef = undefined; | ||
// // console.log(typeof abc); | ||
// // | ||
// // var nul = null; | ||
// // | ||
// // var arr = [123, 123, 123]; | ||
// | ||
// var number1 = null; | ||
// var number2 = undefined; | ||
// | ||
// // console.log(global); | ||
|
||
// let arr = [1, 2, 3, 4, 5,'string', true]; | ||
// arr.map((item) => { | ||
// console.log(item); | ||
// }); | ||
|
||
|
||
|
||
// let arr = [1, 2, 3, 4, 5,'string', true]; | ||
// let newArr = arr.map((item) => { | ||
// console.log(item); | ||
// }); | ||
|
||
// | ||
// var object = { | ||
// name: 'Ihor', | ||
// doSmth: function() { | ||
// var arr = [1 ,2 ,3 ,4]; | ||
// arr.forEach((item) => { | ||
// console.log(this.name + ' ' + item); | ||
// }); | ||
// } | ||
// }; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|