<!DOCTYPE html>
<html>
<body>

<div id="myDiv" style="border-left:double;">This is a div.</div>
<br>
<button type="button" onclick="myFunction()">Return left border style</button>

<script>
function myFunction() {
    alert(document.getElementById("myDiv").style.borderLeftStyle);
}
</script>

</body>
</html>