mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 09:28:26 +08:00

* Added ounces to kilograms convertion * Added PR suggestions * changed to export default
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
/**
|
|
* This function converts ounces to kilograms
|
|
* https://en.wikipedia.org/wiki/Ounce
|
|
* @constructor
|
|
* @param {number} oz - Amount of ounces to convert to kilograms
|
|
*/
|
|
const ouncesToKilograms = (oz) => {
|
|
return oz * 28.3498 / 1000
|
|
}
|
|
|
|
export default ouncesToKilograms
|