13 lines
212 B
JavaScript
13 lines
212 B
JavaScript
function Value(value_str)
|
|
{
|
|
Unit.call(this);
|
|
|
|
this.value = value_str;
|
|
this.float = parseFloat(this.value);
|
|
this.int = parseInt(this.value);
|
|
|
|
this.render = function()
|
|
{
|
|
return this.value;
|
|
}
|
|
} |