Postfix increment
let x = 3;
y = x++;
// y = 3
// x = 4Prefix increment
let a = 2;
b = ++a;
// a = 3
// b = 3be cautious dont use postfix left value remain same .
let x = 3;
y = x++;
// y = 3
// x = 4let a = 2;
b = ++a;
// a = 3
// b = 3be cautious dont use postfix left value remain same .
hcl health care f2f second round interview asked more uestions on microservice 1.apim manage all apis in one place 2.sql profiler in one fo...
No comments:
Post a Comment