Return to Snippet

Revision: 31572
at September 9, 2010 02:00 by kentos


Initial Code
function trace(str) {
	try {
		console.log(str);
	} catch(e) {
	}
}

Initial URL


Initial Description
If you're front-end, it's a hassle to check values and stuff. If you want to skip addons and such, this functions console.log's what you want

Initial Title
trace-like func for javascript

Initial Tags


Initial Language
JavaScript