Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
Python
JavaScript
Java
C++
x = 3 print(type(x)) #Python
const x = 3; console.log(typeof x); //JavaScript
public class Main { public static void main(String[] args) { int x = 3; System.out.println(((Object)x).getClass().getName()); } } //Java
#include
using namespace std; int main() { int x = 3; cout << typeid(x).name(); return 0; } //C++
Python result:
JavaScript result:
Java result:
CPP result:
<class 'int'>
number
java.lang.Integer
i