Skip to content

Instantly share code, notes, and snippets.

@01Clarian
Created December 16, 2019 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 01Clarian/eafa8f6ab441a43f45ac13e42986a038 to your computer and use it in GitHub Desktop.
Save 01Clarian/eafa8f6ab441a43f45ac13e42986a038 to your computer and use it in GitHub Desktop.
Kelvin Conversion Function with Hardcoded Kelvin Argument
//grabbing the dom ids:
const convertKelvin = document.querySelector('#convertKelvin')
const results = document.querySelector('#results')
const kelvinNumber = document.getElementById('kelvinNumber')
convertKelvin.onclick = () => {
console.log('test')
convertKelvinReg(300)
}
// non curried function
const convertKelvinReg = (kelvin, formula) => {
formula = (Math.round((kelvin - 273.15) * 9 / 5) + 32)
return results.innerHTML = formula
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment