I am working with a JavaScript calendar. When selecting dates, the format will be something like "04-01-2020". I have a function in place to check if the range between the from date and to date is over 30 days. My question is, how can I get the date that is exactly 30 days after a specific date? I assume I would need to convert the date from "mm-dd-yyyy" to JavaScript's date format, perform the necessary calculations, and then convert it back somehow.