Pergunta de entrevista da empresa Infosys

arrays, pointers/references to arrays in C++, difference between arrays in C++ and Javascript

Resposta da entrevista

Sigiloso

10 de abr. de 2019

The main difference is that Javascript is what it is called a scripting language. It doesn't have to be compiled to be executed, like C++ and Java. JS in dynamically typed whereas C+ and Java are static typed. In C++ and Java you have to declare the type of the variable along with the variable, like int x.