You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
javascript:let USDollar = new Intl.NumberFormat('en-US', {style: 'currency',currency: 'USD',});s=document.getSelection();if(s==''){void(s=prompt('Input hourly rate to convert to annual:',''))};if(s && isNaN(Number(s)))alert('Input or highlight a number please.');else if(s)alert(USDollar.format(s)+' per hour would be '+USDollar.format(s*2080)+' per year');