JavaScript Practice Exercise One

Question 1 :
Create a variable channelName and assign it string value techTIME
var = ""
Question 2 :
Create a variable myAge and fill it with numerical value 15
var =
Question 3 :
Fill it correctly
gender = "Male";
Question 4 :
What will be value of y
            x = 12;
            y = x;
            console.log('The value in y is:',y)
          

Output: The value in y is:
Question 5 :
Fill in the built-in function to display output in browser console
            x = "Abrar Hussain";
            y = x;
            ('My name is:',y)
          

Output: My name is: Abrar Hussain
Question 6 :
Fill in missing property & attribute to link JavaScript script.js file externally in head
<script = "script.js" > </script>
Question 7 :
What is the datatype of variable myAnswer
          let myAnswer = true ;
          

Output
Question 8 :
What is the datatype of variable question
            let question = 'false' ;
          

Output
Question 9 :
What is the data type of variable employeeList
            let employeeList = ['Mujtaba', 'Mohsin', 'Mehrab' , 'Manoj']
          

Output :
Question 10 :
Fill in the code to output following in browser console. My name is Abrar Hussain
            let name = "Abrar Hussain"
          

( "" , )