<script> var str = 10; var arr = "hello"; var sum = `${str}hello`; console.log(sum); var sumPlus = `${str}${arr}`; console.log(sumPlus); </script>