varemenos
2/27/2012 - 3:53 AM

jQuery - Optional parameters and typeof variable

jQuery - Optional parameters and typeof variable

x('4');

function x(i){
	if(typeof i === 'undefined'){
		console.log('i : undefined');
	}else{
		console.log('i : ' + i);
		console.log('typeof ' + typeof i);
	}
}

// output
// i = 4
// typeof string