Many people don’t know, but it is possible to convert C++ code to JavaScript using EmScripten. We have a video that shows how to install and use EmScripten:
However, the process requires a little more skill. For more information, access the Documentation on the Emscripten website about bind.h
:
But what many people don’t know is that it is also possible to do the opposite process and very easily, which is:
To do this, simply access this address:
There you can paste your JavaScript code and convert it to C++ and achieve this with just one click.
Enter the JavaScript code:
console.log("Terminal Root")
And you will get the equivalent C++ code:
#include <iostream>
int main() {
std::cout << "Terminal Root" << std::endl;
return 0;
}
And, look!!! It’s not just about basic codes!!! You can convert complex codes from:
function sum(x, y){
return x + y;
}
console.log("The sum of x + y is: ", sum)
C++ output:
#include <iostream>
int sum(int x, int y) {
return x + y;
}
int main() {
std::cout << "The sum of x + y is: " << sum(x, y) << std::endl;
return 0;
}
const fruits = new Map([
["Apples", 500],
["Bananas", 300],
["Oranges", 200]
]);
fruits.set("Melon", 200);
typeof fruits;
console.log(fruits)
C++ output:
#include <iostream>
#include <unordered_map>
#include <string>
int main() {
std::unordered_map<std::string, int> fruits = {
{"Apples", 500},
{"Bananas", 300},
{"Oranges", 200}
};
fruits["Melon"] = 200;
std::cout << "Type of fruits: " << typeid(fruits).name() << std::endl;
for (const auto& pair : fruits) {
std::cout << pair.first << ": " << pair.second << std::endl;
}
return 0;
}
class Car {
constructor(name, year) {
this.name = name;
this.year = year;
}
}
const myCar1 = new Car("BYD", 2024);
const myCar2 = new Car("Audi", 2019);
console.log(myCar1.name)
console.log(myCar2.name)
C++ output:
#include <iostream>
#include <string>
class Car {
public:
Car(std::string name, int year) {
this->name = name;
this->year = year;
}
std::string name;
int year;
};
int main() {
Car myCar1("BYD", 2024);
Car myCar2("Audi", 2019);
std::cout << myCar1.name << std::endl;
std::cout << myCar2.name << std::endl;
return 0;
}
And much more!
Even confusions that you have difficulty understanding in JS can be clarified with C++:
console.log(1 + 1)
console.log("1" + 1)
C++ output:
#include <iostream>
int main() {
std::cout << 1 + 1 << std::endl;
std::cout << "1" + 1 << std::endl; // This line will produce an error in C++
return 0;
}
😃
There are some other sites that do the same thing, including for several programming languages and also for the reverse process, but they are paid solutions!