<<<<<<< HEAD Code Wars - Brett Crafton

Hex to Decimal

Question

Complete the function which converts hex number (given as a string) to a decimal number.

No examples

Solution by -

My Solution


	function hexToDec(hexString){
		return parseInt(hexString, 16)
		}
				

Try it yourself - CodeWars

======= Code Wars - Brett Crafton

Hex to Decimal

Question

Complete the function which converts hex number (given as a string) to a decimal number.

No examples

Solution by -

My Solution


	function hexToDec(hexString){
		return parseInt(hexString, 16)
		}
				

Try it yourself - CodeWars

>>>>>>> 0e614172debaa009c8d31330edbeb3b765b59c39