Module Pattern in Javascript

preview_player
Показать описание
There a bunch of different programming patterns in JS - I'll go through each one... Quickly...
#javascript #programming #coding
Рекомендации по теме
Комментарии
Автор

Most underrated programming video on youtube. Thanks a bunch, man, I can't believe how hard it is to find simple, straightforward explanations of this subject

franciscomagalhaes
Автор

bruh so simple so good hands down well done!

freemanfreeman
Автор

man, it's amazing what you just did here, can't understand how this has only 2.9k views, but i think it's because this might not be your main focus. thanks a lot, you're such a great teacher. cheers!

Kattayopp
Автор

The best explanation I found. Thank you, kind sir.

northstarcode
Автор

Thanks bro, you described the things in very clear manner

prabhakarmishra
Автор

Very straight-forward explanation.
Kudos!

k.t.
Автор

this was one of the best videos I have watched

MarinersLegacy
Автор

how great video is that !! thanks Adam

muhammed.s
Автор

Short and extremely helpful! Thank you!

viktoriiapikh
Автор

This was a cool video. I'm trying to learn proper coding practices to help me improve my js - do you know of decent sources on how to program in a modular way?

AE-yrmo
Автор

error can you tell me what is this ?
this is the the code:


const textchanger = function () {
let text = "text that has been changed now"
const picktext = function () {
let element = document.querySelector("h1")
element.textContent = text

return {
callfun: function () {
picktext();
console.log(text);

}

}

}
}
textchanger.callfun()


on executing I'm getting error :

VM234:19 Uncaught TypeError: textchanger.callfun is not a function
at <anonymous>

thewickedmonarch