var price = (function(color) { switch(color) { case 'red': return 10; case 'blue': return 20; default: return 30; } })('blue'); console.log(price); // Will print 20