Javascript is a scripting or programming language that allows you to implement complex features in your webpages. Javascript gives life to your webpages. So let’s have a look at Javascript. Variable: Variable is like a container.It keeps different values. example: var name=”Mahin Bin Raihan” console.log(name); output:Mahin Bin Raihan var number=[1,4,6,7,3]; console.log(number); output:[1,4,6,7,3] we can check of type of a…