Created
June 30, 2022 06:55
-
-
Save Risyandi/f20c17eeebec94d55402de095122b2d5 to your computer and use it in GitHub Desktop.
This file contains 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 cekFunction(value) { | |
let length = value.split(" ").length; | |
let dimension = ""; | |
if (length <= 2) { | |
dimension = value.split(" ").length > 1 ? value.split(" ")[0] : ""; | |
} else { | |
dimension = value.split(" ").length > 1 ? value.split(" ")[1] : ""; | |
} | |
let dimensionValue = dimension.split("x").length > 1 ? dimension.split("x") : []; | |
let volume = dimensionValue.length > 1 ? parseFloat(dimensionValue[0]) * parseFloat(dimensionValue[1]) * parseFloat(dimensionValue[2]) : 0; | |
console.log(length, "length"); | |
console.log(dimension, "dimension"); | |
console.log(dimensionValue, "dimensionValue"); | |
console.log(volume, "volume"); | |
} | |
let value = "Large 35x30x25 cm"; | |
// let value = "35x30x25 cm"; | |
return cekFunction(value); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment