To set the border width, style, and color in a single declaration, use the border property in JavaScript.
Example
You can try to run the following code to learn how to set border in JavaScript −
<!DOCTYPE html>
<html>
<body>
<button onclick="display()">Set border</button>
<div id="box">
<p>Demo Text</p>
<p>Demo Text</p>
</div>
<script>
function display() {
document.getElementById("box").style.border = "thick dashed #000000";
}
</script>
</body>
</html>