var Class = {
    create: function() {
        return function() {
            this.initialize.apply(this , arguments);
        }
    }
}var A = Class.create();
A. prototype={
    initialize:function(v){
        this .value=v;
    }
    showValue:function(){
        alert(this.value);
    }