ANAhmed Nourinahmednour.hashnode.dev·Nov 9, 2020 · 2 min readCreate objects using class, constructor function, Factory function in JavaScriptin javaScript, you can instantiate an object using three different method Create objects using class class Employee { constructor(name,age,sex) { this.name = name; this.age = age; this.sex = sex; } } var employ...00
ANAhmed Nourinahmednour.hashnode.dev·Nov 9, 2020 · 2 min readWhat's Higher-order function in Programming Languages?Higher-order functions are function that can take another function as an input. " this feature is available in a number of modern languages like JavaScript, Pascal, Swift, and a whole bunch of other ones, but it's not universal. It's not something t...00
ANAhmed Nourinahmednour.hashnode.dev·Nov 7, 2020 · 1 min readWriting Good Javascript Guidelinesthis is a living document that's been compiled by lots and lots of people, some people who are really influential in the community as well. https://github.com/rwaldron/idiomatic.js And essentially the key message is that all code in any codebase shou...00
ANAhmed Nourinahmednour.hashnode.dev·Nov 7, 2020 · 3 min readCompiled vs. Interpreted LanguagesEvery program is a set of instructions, whether it’s to add two numbers or send a request over the internet. Compilers and interpreters take human-readable code and convert it to computer-readable machine code. In a compiled language, the target mach...00
ANAhmed Nourinahmednour.hashnode.dev·Nov 7, 2020 · 3 min readHow Do Websites Actually Work ?What exactly does HTML, CSS and JavaScript do exactly in order to access a webpage, we all know that you need a browser, right? And that can be Chrome, Safari, Firefox, whatever is your favorite one. These are all pieces of software that allow you t...00