let divElement = document.createElement("div");
divElement.style.width = 400;
divElement.style.height = 400;
divElement.style.backgroundColor = "red"; // num : 1
divElement.innerText = "Hello World "; // num : 2
document.body.append(divElement);
// After adding the "divElement" in the dom, only "num : 1" and "num : 2" lines work, but width and height do not work at all.
Could someone please assist me with this issue?