Print variable types

From LemonWiki共筆
Revision as of 14:42, 2 January 2018 by Planetoid (talk | contribs)
Jump to navigation Jump to search

Print type of the variable

PHP gettype()[1]:

# define the variable
$var = 3.14159;

# print type of the variable
echo "type of variable: " . gettype($var);

Python type():[2][3] or print(type(var))

# define the variable
var = 3.14159

# print type of the variable
type(var) # return <class 'type'>
print(type(var))
print("type of variable: " + str(type(var))) # python v. 3 cast type to string

Javascript typeof()[4]

# define the variable
var a = 3.14159;

# print type of the variable
typeof a;
console.log("type of variable:: " + typeof a);

R: typeof()

references


Troubleshooting of ...

Template