Попробуйте так может
<textarea name="" id="text" cols="30" rows="10" style="height: 70px"></textarea>
const
txt = document.getElementById("text"),
txts = txt.style.height,
pd = '70px';
console.log(pd);
if (txts !== pd) {
txt.style.background = "black";
}