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()
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…