Last active
January 18, 2022 11:51
-
-
Save iancover/017b65a2b4db9ccf2bbae36df114b1f8 to your computer and use it in GitHub Desktop.
Thinkful exercises: JS functions using numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function computeArea(width, height) { | |
return width*height | |
} | |
function testComputeArea() { | |
var width = 3; | |
var height = 4; | |
var expected = 12; | |
if (computeArea(width, height) === expected) { | |
console.log('SUCCESS: `computeArea` is working'); | |
} | |
else { | |
console.log('FAILURE: `computeArea` is not working'); | |
} | |
} | |
testComputeArea(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isDivisible(divisee, divisor) { | |
return divisee % divisor === 0 | |
} | |
function testIsDivisible() { | |
if (isDivisible(10, 2) && !isDivisible(11, 2)) { | |
console.log('SUCCESS: `isDivisible` is working'); | |
} | |
else { | |
console.log('FAILURE: `isDivisible` is not working'); | |
} | |
} | |
testIsDivisible(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function celsToFahr(celsTemp) { | |
return celsTemp * 1.8 + 32; | |
} | |
function fahrToCels(fahrTemp) { | |
return (fahrTemp-32)/1.8; | |
} | |
function testConversion(fn, input, expected) { | |
if (fn(input) === expected) { | |
console.log('SUCCESS: `' + fn.name + '` is working'); | |
return true; | |
} | |
else { | |
console.log('FAILURE: `' + fn.name + '` is not working'); | |
return false; | |
} | |
} | |
function testConverters() { | |
var cel2FahrInput = 100; | |
var cel2FahrExpect = 212; | |
var fahr2CelInput = 32; | |
var fahr2CelExpect = 0; | |
if (testConversion(celsToFahr, cel2FahrInput, cel2FahrExpect) && | |
testConversion(fahrToCels, fahr2CelInput, fahr2CelExpect)) { | |
console.log('SUCCESS: All tests passing'); | |
} | |
else { | |
console.log('FAILURE: Some tests are failing'); | |
} | |
} | |
testConverters(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment