Hi everyone, This blog is about how JavaScript parses your script (source code) when it encounters return statement. We can write code using any one style of following two: Style 1: [sourcecode language="java"] function func() { return 6; } [/sourcecode] and Style 2: [sourcecode language="java"] function func() ...