How to Convert Hexadecimal number to decimal in JavaScript?

Below is a sample sourcecode snippet demonstrating the conversion of Hexadecimal number to decimal in JavaScript.

How to Convert Hexadecimal number to decimal in JavaScript?

DecimalValue = parseInt(HexadecimalValue, 16);