What is module in typescript? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is module in typescript?

what is module in typescript explain with example?

10th Aug 2019, 1:41 PM
swali1
4 Answers
+ 5
You’re welcome ;)
12th Aug 2019, 6:47 AM
Sokrat_Poghosyan
Sokrat_Poghosyan - avatar
+ 3
Another example: file1.js export const sum = (a, b) => a + b; export const mult = (a, b) => a * b; file2.js import {sum} from “./file1.js”; sum(5, 9);
11th Aug 2019, 2:42 PM
Sokrat_Poghosyan
Sokrat_Poghosyan - avatar
+ 2
file1.js const someFunction = () => { // doSomething; } export default someFunction; file2.js import doNothing from “./file1.js” doNothing(); In this case file1 is a module, which we import in file2
11th Aug 2019, 2:40 PM
Sokrat_Poghosyan
Sokrat_Poghosyan - avatar
0
"In this case file1 is a module, which we import in file2" ok got it ! really thanks
12th Aug 2019, 6:45 AM
swali1