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 yearly salary to convert to hourly:',''))};if(s && isNaN(Number(s)))alert('Input or highlight a number please.');else if(s)alert(USDollar.format(s)+' per year would be '+USDollar.format(s/2080)+' per hour');