Last active
November 29, 2019 18:07
-
-
Save atinux/b65237eb0348fbeb0da3c5dea726a8f7 to your computer and use it in GitHub Desktop.
Get last digit of an EAN/GTIN 13 in JavaScript
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 getLastEan13Digit(ean) { | |
if (!ean || ean.length !== 12) throw new Error('Invalid EAN 13, should have 12 digits') | |
const multiply = [1, 3] | |
let total = 0 | |
ean.split('').forEach((letter, index) => { | |
total += parseInt(letter, 10) * multiply[index % 2] | |
}) | |
const base10Superior = Math.ceil(total / 10) * 10 | |
return base10Superior - total | |
} | |
console.log(getLastEan13Digit('340093903576')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks