Javascript equivalent for PHP's print_r


/ Published in: JavaScript
Save to your folder(s)

Description

print_r - Prints human-readable information about a variable

mixed print_r( mixed expression [, bool return] )

print_r() displays information about a variable in a way that's readable by humans.
Parameters

* expression

The expression to be printed.
* return

If you would like to capture the output of print_r(), use the return parameter. If this parameter is set to TRUE, print_r() will return its output, instead of printing it (which it does by default).

Return Values

If given a string, integer or float, the value itself will be printed. If given an array, values will be presented in a format that shows keys and elements. Similar notation is used for objects.

URL: http://kevin.vanzonneveld.net/techblog/article/javascript_equivalent_for_phps_print_r/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.