
The competition between Java and Javascript (in terms of popularity, not in use) has been going on for years. But it seems that Javascript is gradually consolidating as the most popular programming language of recent years. Or at least 2018, as revealed by a survey of 71,000 developers carried out by the HackerRank platform.
Although they share a name, Java and Javascript have nothing to do with it. Java was created in 1996 by Sun Microsystems. It is a compiled language (before running it must be converted to machine language), general purpose (serves to create all kinds of programs), object-oriented. Javascript was created by the company Netscape to add interaction in web pages, and is an interpreted language, ie, runs directly by the browser. If they share a name, it's because Netscape simply wanted to take advantage of Java's popularity.
In HackerRank's survey of 71,000 developers in 100 countries, 71% master Java, and 73% Javascript, making it arguably the most popular programming language of 2018. Interestingly, only 42% of computer students master it, indicating that it is a language learned on the job, not at university.
The veteran C language remains in third place, followed by Python and C++. Classical programming continues to carry enormous weight, especially in companies.
HackerRank has also asked programmers which languages they want to learn the most in 2019.
The most popular are the new languages aimed at static typing fashion, Google Go, Kotlin, and Microsoft TypeScript:
Static typing is a form of programming where data type errors are detected during compilation, not during execution. With a static organization, applications are more stable and secure.
Go is a concurrent language based on the syntax of C. TypeScript is a variant of JavaScript developed by Microsoft.
One of the surprises of 2018 has been Python, a classic with almost 30 years that is among the most popular languages of 2018, and the most desired of 2019. The reason is that it turns out to be a language that adapts very well to machine learning, and is being used in Artificial Intelligence projects.
People vector created by freepik - www.freepik.com

Silvia Mazzetta
Web Developer, Blogger, Creative Thinker, Social media enthusiast, Italian expat in Spain, mom of little 6 years old geek, founder of @manoweb. A strong conceptual and creative thinker who has a keen interest in all things relate to the Internet. A technically savvy web developer, who has multiple years of website design expertise behind her. She turns conceptual ideas into highly creative visual digital products.
Related Posts
Validating HTML forms using BULMA and vanilla JavaScript
Today we are going to write about contact forms and how to validate them using JavaScript. The contact form seems to be one of the top features of every basic home…
A FULFILLED PROMISE - Using the FETCH API to make AJAX calls
In this article we talked about what AJAX calls are and how to use them in a traditional way, by using the XMLHttpRequest (XHR) object. In short, thanks to AJAX…
How to use Parallax.js effect on your website
Today, we're going to write about the parallax effect, similar to parallax scrolling, and how to implement it to improve your landing page. In webdev, they say mobile first -…
Django vs. Laravel: Market Share Comparison
There are two leading frameworks in the web development segment: Django and Laravel. In this article, we prepared a Django and Laravel comparison focusing on their market share so that…
How to make the website's dark mode persistent with Local Storage, CSS and JS
Recently we wrote about how to do a switchable alternative color mode or theme, a very useful and popular feature to websites. Today’s article is going to be about how…
A Java approach: While loop
Hello everyone and welcome back! After having made a short, but full-bodied, introduction about cycles, today we are finally going to see the first implementations that use what we have called…
Dark Mode on website using CSS and JavaScript
In today’s article we are going to learn how to build pretty much standard these days on the web pages and that is the alternative color mode and switching between…
A Java approach: The Cycles - Introduction
Hello everyone and welcome back! Until now, we have been talking about variables and selection structures, going to consider some of the fundamental aspects of these two concepts. Theoretically, to…
A Java Approach: Selection Structures - Use Cases
Hello everyone and welcome back! Up to now we have been concerned to make as complete an overview as possible of the fundamental concepts we need to approach the use…
JavaScript: Spread and Rest operators
In today’s article we are going to talk about one of the features of the ES6 version(ECMAScript 2015) of JavaScript which is Spread operator as well as Rest operator. These features…
A Java approach: boolean variables
The previous time, we talked extensively about Boolean variables, trying to outline the main operations that can be carried out at a practical level. Of all the cases examined, we have…
A Java approach: condtional structures
Hello everyone and welcome back! The previous times we have introduced the concept of variable, trying to define some basic concepts about it. However, some situations suggest that the concept of…