No reviews yet. You can buy this product and be the first to leave a review.
Used Salomon QST Lux Jr. Kids Skis 100cm
Product Details
Condition: Used
Topsheet: Light cosmetic wear including small scratches and scuffs from normal kid use. No cracks, chips, or major structural concerns. Bases: Clean bases with minor surface scratches. No core shots or edge separation. Recently inspected and ready for the season. Edges: Light wear but fully intact. No rust, cracks, or damage. Bindings: Standard junior 2x4 mount pattern. Does not include bindings.
Rocker Type:rocker/camber/rocker
Early rise tip for easier turn initiation with camber underfoot for edge hold and stability.
Target Rider:
Beginner to early intermediate kids learning to ski groomers and develop foundational turning skills. Ideal for ski school and family resort days.
Key Features:
Lightweight composite junior core for easy maneuverability
Forgiving flex pattern that supports proper skill development
Durable cap construction designed to withstand kid use
Stable all-mountain shape great for groomers and progression
Performance Overview:
The Salomon QST Lux Jr. is a confidence-building kids ski designed for young riders progressing through their first seasons on the mountain. Its lightweight and forgiving design makes turning smooth and intuitive, while camber underfoot provides grip and stability as skills improve.
// 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!`;