-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
46 lines (30 loc) · 805 Bytes
/
script.js
File metadata and controls
46 lines (30 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// let n = 5;
// for(let i = 0; i< n; i++){
// console.log("hello", i)
// }
// NODE Repl (Read Evaluate Print and Loop):
// process
// global
// .help
// .save
// NODE Filse
// console.log(process.argv)
// let args = process.argv
// for(let i = 2; i < args.length; i++){
// console.log(args[i])
// }
// const someValue = require("./math")
// console.log(someValue)
// const math = require("./math")
// console.log(math)
// console.log(math.sum(2,2))
// console.log(math.mul(9,9))
// console.log(math.g)
// console.log(math.PI)
// const info = require("./Fruits")
// console.log(info)
// ***************************************? For Import :
import { sum, PI } from "./math.js";
import { generate, count} from "random-words";
// console.log(PI, sum(2,3));
console.log(generate())