index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<h3>Hello, World!</h3>
<script>
const finalStyleObject = window.getComputedStyle(
document.querySelector("h3")
);
console.log(finalStyleObject);
</script>
</body>
</html>