function doubleSize() { var button = document.getElementById("myButton"); var fontSize = window.getComputedStyle(button, null).getPropertyValue('font-size'); var newFontSize = parseInt(fontSize) * 2; button.style.fontSize = newFontSize + "
function doubleSize() { var button = document.getElementById("myButton"); var fontSize = window.getComputedStyle(button, null).getPropertyValue('font-size'); var newFontSize = parseInt(fontSize) * 2; button.style.fontSize = newFontSize + "px"; }