function ClosureFunc(x){
     return function(y){
           retrun  x + "and" + y;
     };
}
I'm not used to coding javascript's expression and unique characteristics. And I have experience Java Object-Oriented concept. So this function seems a little bit awkward to me. How can it be transformed when I use java code?
