No reviews yet. You can buy this product and be the first to leave a review.
NEW 2026 Nidecker Women's Sierra BOA Snowboard Boot
Product Details
Women's Sierra BOA Snowboard Boot
Experience the ultimate in comfort and performance with the Nidecker Women's Sierra BOA Snowboard Boot. Engineered for the most demanding riders, this boot features the innovative H4 Coiler BOA® system for quick and precise lace adjustments, ensuring a snug fit every time. Its soft flex provides a forgiving and fun ride, making it perfect for both park and powder adventures.
BOA® Lacing System: Effortless closure and release with a single dial.
Soft Flex: Ideal for beginners and intermediate riders seeking comfort.
Impact Resistance: Built to withstand the rigors of various terrains.
// Get the current date
let today = new Date();
// Get the year of the current date
let christmasYear = today.getFullYear();
// Check if the current date is already past December 25th
if (today.getMonth() === 11 && today.getDate() > 25) {
// If so, set Christmas for the next year
christmasYear = christmasYear + 1;
}
// Get the date of the next Christmas
let christmasDate = new Date(christmasYear, 11, 25); // Month 11 is December (0-indexed)
// Get the number of milliseconds in one day
const dayMilliseconds = 1000 * 60 * 60 * 24;
// Calculate the remaining amount of days
let remainingDays = Math.ceil((christmasDate.getTime() - today.getTime()) / dayMilliseconds);
// Display the result (e.g., in the console or on a webpage)
console.log(`${remainingDays} days left until Christmas!`);
// Or, to display on an HTML page:
// document.getElementById("countdown").innerText = `${remainingDays} days left until Christmas!`;