document.querySelectorAll('.dakis-product-out-of-stock')[0].style.display = 'none';
// Check if the 'preOrder' value is true
var isPreOrder = '<%= product.preOrder %>';
var preOrderDate = '<%= product.preOrderDate %>';
var preOrderMessage = 'Available on ' + preOrderDate;
var prodName = '<%= product.name %>';
if(isPreOrder.length > 1) {
document.querySelectorAll(".d-product-price-pre-order-available-container")[0].style.cssText = 'display:none';
document.querySelectorAll(".d-product-price-pre-order-text-container")[0].style.cssText = 'display:none';
document.getElementById("preOrderDate").innerHTML = preOrderMessage;
document.getElementById("preOrderDiv").style.display = 'block';
};
<% console.log(product) %>;