Creates an object clone.
Clone is a fast copy of the original object. It is created by making an empty Object and setting its prototype to the original object.
nullvar newObj = obj.clone();
new object
var obj = new AW.HTML.DIV;
obj.setStyle("border", "1px solid red");
var obj1 = obj.clone();
var obj2 = obj.clone();