I learnt javascript! But can anyone of you tell me how to code in js to male it upload on codechef! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

I learnt javascript! But can anyone of you tell me how to code in js to male it upload on codechef!

I learnt javascript! But can anyone of you tell me how to code in js to male it upload on codechef! I saw many correct submitted programs but I can't understand the uses of import keyword in the program!

12th Aug 2017, 2:28 PM
Avijit Das
Avijit Das - avatar
1 Answer
+ 4
import keyword was introduced in JavaScript version, ES6 to support native modules. What it means is that you can export contents from one JS file and use the import keyword to make it available in another JS file. i.e // myFunc.js export default function(x) { return x * x; } // main.js import myFunc from 'myFunc'; myFunc(2); // => 4 So from the above a function was defined in myFunc.js file and made available in main.js file. Later invoked with a parameter and the result as seen above. Happy coding!
12th Aug 2017, 3:59 PM
Benneth Yankey
Benneth Yankey - avatar