10 JavaScript hacks that developers should know
JavaScript is a language that has many functionalities and “powers”. You can start with very little and do good tricks, but you can also dig deeper into the language and discover several added values…
Reasons why should NOT start coding with Kotlin
If you are starting to learn how to code, take another language like Java, JavaScript, or C/C++. Do not start learning how to code with Kotlin. As a popular opinion among developers over the world…
How to Drag & Drop HTML Elements and Files using Javascript
Are you trying to add the drag & drop functionality to your website, but you don’t know exactly how to do it? Well, worry not, this story explains all you need to know to get you started. To be able…
5 Javascript Clean Coding Patterns To Enhance your Code
Writing good reusable code can be difficult sometimes. Sometimes we may learn to code in different languages and stick to some limitations or patterns that make sense in that context. Although there…
I re-wrote Array in JavaScript
Nearly everything in Javascript is an object. Implementing custom Array with JavaScript with custom methods using Object data type and demonstration code.
What is the Difference Between map() and forEach() in JavaScript?
We often need to process array elements, and to iterate through our arrays
JavaScript provides us the most loved functions that might…
Remove Dirty NullChecks in Java
For some projects, I have worked in Javascript, I saw one beautiful/amazing thing in javascript. That is we can check to execute some function if the value is not null only, otherwise, it will not…
All kinds of loops in JavaScript Explained
Everything about the loops in JavaScript. “All kinds of loops in JavaScript Explained” is published by ARC Tutorials.
6
[코딩애플] TypeScript 기초
TypeScript는 JavaScript(Dynamic typing)의 상위호환 프로그래밍 언어로 정적 타입을 명시할 수 있다 확장자로 .ts를 사용하며 컴파일을 통해 최종적으로는 .js 파일로 구동된다 타입 선언 기능으로 인해 다음과..
3 Scenarios Where You Shouldn’t Use Arrow Functions
Compared with ordinary functions (declared with the function keyword), arrow functions have many differences, including: