solved tempConversion.js

This commit is contained in:
Salih 2020-07-16 21:38:52 +02:00
parent bdf2834cec
commit 9d9b3f5013
2 changed files with 13 additions and 9 deletions

View File

@ -1,9 +1,13 @@
const ftoc = function() { const ftoc = function(value) {
let c=(5/9)*(value-32);
c= Number (c.toFixed(1));
return c;
} }
const ctof = function() { const ctof = function(value) {
let f=(9/5)*value + 32;
f=Number (f.toFixed(1));
return f;
} }
module.exports = { module.exports = {

View File

@ -4,22 +4,22 @@ describe('ftoc', function() {
it('works', function() { it('works', function() {
expect(ftoc(32)).toEqual(0); expect(ftoc(32)).toEqual(0);
}); });
xit('rounds to 1 decimal', function() { it('rounds to 1 decimal', function() {
expect(ftoc(100)).toEqual(37.8); expect(ftoc(100)).toEqual(37.8);
}); });
xit('works with negatives', function() { it('works with negatives', function() {
expect(ftoc(-100)).toEqual(-73.3); expect(ftoc(-100)).toEqual(-73.3);
}); });
}); });
describe('ctof', function() { describe('ctof', function() {
xit('works', function() { it('works', function() {
expect(ctof(0)).toEqual(32); expect(ctof(0)).toEqual(32);
}); });
xit('rounds to 1 decimal', function() { it('rounds to 1 decimal', function() {
expect(ctof(73.2)).toEqual(163.8); expect(ctof(73.2)).toEqual(163.8);
}); });
xit('works with negatives', function() { it('works with negatives', function() {
expect(ctof(-10)).toEqual(14); expect(ctof(-10)).toEqual(14);
}); });
}); });