
JavaScript ES6, ES7, ES8: Learn to Code on the Bleeding Edge (Full Course)
video description
Date: 2022-03-14
Comments and reviews: 9
Mahmoud
If anyone has a problem with import/export, try the following solution:-
> open cmd-
> navigate to the project folder-
> type 'npm init' and click enter-
(you will notice a file called package.json created)-
> open package.json and under -name-: --, type: -type-: -module-,-
save and recompile. It should be solved.
reply
If anyone has a problem with import/export, try the following solution:-
> open cmd-
> navigate to the project folder-
> type 'npm init' and click enter-
(you will notice a file called package.json created)-
> open package.json and under -name-: --, type: -type-: -module-,-
save and recompile. It should be solved.
reply
Yoel
In the for of section you can also use forEach for the incomes and += to total like this :
let incomes = [62000, 67000, 75000];-
let total = 0;-
incomes.forEach(function(item)--
total += item;-
-)-
console.log(total);
reply
In the for of section you can also use forEach for the incomes and += to total like this :
let incomes = [62000, 67000, 75000];-
let total = 0;-
incomes.forEach(function(item)--
total += item;-
-)-
console.log(total);
reply
LoopMusic
Alright so in the -For Loop Challenge-
Adding 5000 to every number of the array worked perfectly, all u had to do was add console.log inside the for of statement block and not outside
reply
Alright so in the -For Loop Challenge-
Adding 5000 to every number of the array worked perfectly, all u had to do was add console.log inside the for of statement block and not outside
reply
Ralph
If you encounter this kind of error -Uncaught SyntaxError: Cannot use import statement outside a module- just add this -type=-module- -in your index.html script tag :)
reply
If you encounter this kind of error -Uncaught SyntaxError: Cannot use import statement outside a module- just add this -type=-module- -in your index.html script tag :)
reply
Steven
Trailing commas are great for the maintenance of code. Removes the need to add an extra comma when adding additional elements in a data structure.
reply
Trailing commas are great for the maintenance of code. Removes the need to add an extra comma when adding additional elements in a data structure.
reply
Mwafreaker
39:03
--every animal should have legs--
Nobody:
Snakes, snails and fish :--whyyyy Dylan why did you have to do us like that!!--
reply
39:03
--every animal should have legs--
Nobody:
Snakes, snails and fish :--whyyyy Dylan why did you have to do us like that!!--
reply
c_a
56:51, but thats exactly how normal functions work too isnt it? program continues running after function returns. Whats different about async?
reply
56:51, but thats exactly how normal functions work too isnt it? program continues running after function returns. Whats different about async?
reply
Josh
When you use a for ... of loop, I'm pretty sure you can change the loop variable if you use declare it with let (tested on CodeSandbox)
reply
When you use a for ... of loop, I'm pretty sure you can change the loop variable if you use declare it with let (tested on CodeSandbox)
reply
itech
Arrow functions make code less readable and barely actually save any time. Most time coding is spent thinking, not typing.
reply
Arrow functions make code less readable and barely actually save any time. Most time coding is spent thinking, not typing.
reply
Add a review, comment
Other channel videos















