Bello's Blog

Bello's Blog

Follow
homeTechstack MediaHTMLSoftware EngineeringJavaScriptReactAlgorithm
Series

JavaScript

You will learn the basics of JavaScript, including the Modern JS or ECMAScript 2015+ The approach is from the basics to more advanced topics with lots of examples. It also include YouTube videos...

Articles in this series

The Core of JavaScript

Jan 12, 20212 min read 2.3K views

https://youtu.be/l4sgVEKsWyk JavaScript is a popular programming language used both in the browser and server. It was initially called LiveScript but...

The Core of JavaScript

Alternatives to JavaScript

Jan 13, 20211 min read 706 views

https://youtu.be/TTqGfoQus04 JavaScript is written in C++, including engines like Spider Monkey, V8, Chakra, etc. JavaScript codes are compiled to...

Alternatives to JavaScript

The JavaScript Developer Tools

Jan 14, 20212 min read 670 views

https://youtu.be/Ydg8aRuEHg8 Errors in the browser are not visible to developers. But there's one specific tool that developers use to debug...

The JavaScript Developer Tools

JavaScript-HTML Link

Jan 15, 20212 min read 864 views

https://youtu.be/xCTY2WYnFG0 Internal JavaScript HTML Document allows JavaScript programs to be inserted in a <script> tag. The <script> tag is...

JavaScript-HTML Link

JavaScript Output

Jan 16, 20212 min read 677 views

https://youtu.be/tmNNnPJPYvw JavaScript can display data in different ways using: console.log() Object alert() Object document.write()...

JavaScript Output

JavaScript Simple Code Structure

Jan 17, 20213 min read 295 views

https://youtu.be/r6GwCU7_HQA Statements Statements generally are instructions to be executed by a computer program. A JavaScript program or code is...

JavaScript Simple Code Structure