最佳答案
function a() { return 1; }
function b() { return(1); }
I tested the above code in Chrome's console, and both returned 1.
function c() { return "1"; }
function d() { return("1"); }
I also tested the code above, and both of the functions returned "1".
So what is the difference between using return and return()?