NST - Neopets Clock Anywhere

By Michael 5 Last update May 2, 2011 — Installed 527 times.

shorten code

in
Subscribe to shorten code 2 posts, 2 voices



Avindra V.G. Scriptwright

from:

function t(c){
	if(c<=9){
		r1='0'+c;
	}
	else{
		r1=c;
	}
	return r1;
}

to:

function t(c){
	return (c<=9)? '0'+c : c;
}

 
w35l3y Scriptwright
FirefoxWindows

or even better:

function t(c)
{
	return ("0" + c).substr(-2);
}

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel