For the past 2 hours or so I am trying to set up local AI on my Ideapad and for that I installed WSL on my PC (p.s. it’s been a lot of fun to work on the terminal). So I installed the Ubuntu distro (came by default), and after installing the distro I copied the curl command from the Ollama website which was: curl command to install Ollama. Now after installing Ollama on my Ubuntu distro I tried ...
What is variable scope? The region where the defined variable exists and can be recognised its variable scope There can be multiple type of scopes- Global Scope, //Global Scoped var a; 2. Function Scoped, //Function Scoped function name(){ } 3. Block Scoped (blocks include if else statements, loops too) //Block Scoped { } Differences between var let and const? 1. SCOPE OF VARIABLE- Function...