How will this outputs to be 64 and 20?
I have got a question from one of my assessments and need to know the answer to that.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id='test'></p>
<p id='test1'></p>
<script>
document.getElementById('test').innerHTML = -"4"+10+"4";
document.getElementById('test1').innerHTML = "5"*3+5;
</script>
</body>
</html>