Created
November 26, 2019 10:14
-
-
Save cristacheda/434f34836165ec115e7911e19b719040 to your computer and use it in GitHub Desktop.
Adaugă "de" la sfârșitul unui număr dacă este cazul.
This file contains hidden or 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
var date = new Date('November 09 2019'); | |
var current_day = date.getDate(); | |
var base_forms = 5; | |
var forms = base_forms + current_day * 12; | |
var dozens = forms / 100; | |
var dozens = dozens.toString(); | |
var dozens = dozens.split(".")[1]; | |
var dozens = parseInt(dozens, 10); | |
if (dozens > 19) { | |
var forms = forms.toString() + ' de'; | |
} else { | |
var forms = forms; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment