Skip to content

Instantly share code, notes, and snippets.

@mailtodanish
Last active November 6, 2022 05:33
Show Gist options
  • Save mailtodanish/b6546bde84396cea67c99df072d7a4be to your computer and use it in GitHub Desktop.
Save mailtodanish/b6546bde84396cea67c99df072d7a4be to your computer and use it in GitHub Desktop.
calculate min variable using Knockout
this.min = ko.computed(function () {
let toDateObj = new Date(this.to_date());
toDateObj.setFullYear(toDateObj.getFullYear() - 1);
return ko.observable(ojconverterutils_i18n_1.IntlConverterUtils.dateToLocalIso(toDateObj));
}, this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment