Javascript String hex2Dec()

Description

Javascript String hex2Dec()


String.prototype.hex2Dec = function() {
 return parseInt(this,16);
};



PreviousNext

Related