Hey guys i want to know that what is the difference between these two type of single quotes` and '
i tried to execute the below command with ` then it worked
axios.get(`https://api.github.com/users/${this.state.userName}`)
.then(resp => {
console.log(resp);
});
but when i tried to run the same command using '' it doesnt work
axios.get('https://api.github.com/users/${this.state.userName}')
.then(resp => {
console.log(resp);
});