mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-04 15:39:42 +08:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
/**
|
|
* This function converts liters to US gallons
|
|
* https://en.wikipedia.org/wiki/Gallon
|
|
* @constructor
|
|
* @param {number} liters - Amount of liters to convert to gallons
|
|
*/
|
|
const litersToUSGallons = (liters) => {
|
|
return liters / 3.785411784
|
|
}
|
|
|
|
export default litersToUSGallons
|