Skip to content

Instantly share code, notes, and snippets.

@Risyandi
Created June 30, 2022 06:55
Show Gist options
  • Save Risyandi/f20c17eeebec94d55402de095122b2d5 to your computer and use it in GitHub Desktop.
Save Risyandi/f20c17eeebec94d55402de095122b2d5 to your computer and use it in GitHub Desktop.
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