function drawCustomCat(height, hash) { let cat = {}; cat.furColor = String(height)[1] === "6" ? "brown" : "gray"; cat.hat = String(height).includes("7") ? "cap" : "none"; cat.eyes = hash.indexOf("ab") > 10 ? "blue" : "green"; return `${cat.hat === "cap" ? '' : ""}`; } document.write(drawCustomCat(696002, "00000000000000000007927f5cbe9abdb3ce032a51e8e9eeeb21f848df7231d3"));