Anonymous JS function executed inmediately

by rvaldez

JavaScript

console.log(
(function(x){
    return x*x;
})(10)
    );