For a long time, JavaScript had no compatibility issues because in every new version release old functionality were not changing. But it was not good as if there were any issue with ...read more
Semicolons and Comments are buidling blocks of code. Semicolons We can have as many statements in our code as we want. Statements can be separated with a semicolon. But, these semicolon are ...read more
In this part of the tutorial, we will learn on core JavaScript. We need working environment o run our scripts. We will use either IDE or browser to do this. Now, let’s ...read more
Code is prone to errors, and as a human, it’s natural to make mistakes. In the browser, errors are not visible to users by default, which makes it challenging to identify and ...read more
This is a tutorial designed to help you learn the language gradually, but you’ll eventually need additional resources. 1. Specification The ECMA-262 specification is the most detailed and formal source of information ...read more
Code editors are where programmers spend most of their time. There are two main types of code editors: IDEs and Lightweight editors. IDEs (Integrated Development Environments) IDEs (Integrated Development Environments) are powerful ...read more
JavaScript was initially created to “make web pages alive”. These JavaScript program are called as scripts. These can be written in HTML of web page and will simply run when the page ...read more
Given a string A, compute the minimum number of characters you need to delete to make resulting string a palindrome. Examples: Input : baca Output : 1 Input : cplusplus Output : ...read more
C++ is a programming language with imperative and object-oriented features. It’s known as a middle-level language and is compiled, general-purpose, statically typed, case sensitive, and has a free-form syntax. C++ supports procedural, ...read more
C++ is as an extension of C, and both languages have almost the same syntax. The main difference between C and C++ is that C++ support Object oriented programming (OOPs) paradigm, while ...read more