Predict the output on the console for the following JavaScript code
<script>
;"let myName = "Geek
;"let myCity = "Geekistan
console.log(`My name is ${myName}. My favorite
city is
.{myCity}$
<script/>
Predict the output on the console for the following JavaScript code.
<script>
;'let geek = 'GeeksforGeeks
;(console.log(typeof geek
;geek=1
;(console.log(typeof geek
<script/>