mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
Complete 7
This commit is contained in:
@@ -1,7 +1,11 @@
|
|||||||
const convertToCelsius = function() {
|
const convertToCelsius = function(degreeinF) {
|
||||||
|
degreeinC = Math.round(((degreeinF - 32) / 1.8) * 10)/10
|
||||||
|
return degreeinC
|
||||||
};
|
};
|
||||||
|
|
||||||
const convertToFahrenheit = function() {
|
const convertToFahrenheit = function(degreeinC) {
|
||||||
|
degreeinF = Math.round(((degreeinC* 1.8) + 32) * 10)/10
|
||||||
|
return degreeinF
|
||||||
};
|
};
|
||||||
|
|
||||||
// Do not edit below this line
|
// Do not edit below this line
|
||||||
|
|||||||
@@ -4,22 +4,22 @@ describe('convertToCelsius', () => {
|
|||||||
test('works', () => {
|
test('works', () => {
|
||||||
expect(convertToCelsius(32)).toEqual(0);
|
expect(convertToCelsius(32)).toEqual(0);
|
||||||
});
|
});
|
||||||
test.skip('rounds to 1 decimal', () => {
|
test('rounds to 1 decimal', () => {
|
||||||
expect(convertToCelsius(100)).toEqual(37.8);
|
expect(convertToCelsius(100)).toEqual(37.8);
|
||||||
});
|
});
|
||||||
test.skip('works with negatives', () => {
|
test('works with negatives', () => {
|
||||||
expect(convertToCelsius(-100)).toEqual(-73.3);
|
expect(convertToCelsius(-100)).toEqual(-73.3);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('convertToFahrenheit', () => {
|
describe('convertToFahrenheit', () => {
|
||||||
test.skip('works', () => {
|
test('works', () => {
|
||||||
expect(convertToFahrenheit(0)).toEqual(32);
|
expect(convertToFahrenheit(0)).toEqual(32);
|
||||||
});
|
});
|
||||||
test.skip('rounds to 1 decimal', () => {
|
test('rounds to 1 decimal', () => {
|
||||||
expect(convertToFahrenheit(73.2)).toEqual(163.8);
|
expect(convertToFahrenheit(73.2)).toEqual(163.8);
|
||||||
});
|
});
|
||||||
test.skip('works with negatives', () => {
|
test('works with negatives', () => {
|
||||||
expect(convertToFahrenheit(-10)).toEqual(14);
|
expect(convertToFahrenheit(-10)).toEqual(14);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user