As in title.
let x = anything;
if(x){
  console.log("True");
}
if(!!x){
  console.log("True");
}
Output here is always going to be True True ?
As in title.
let x = anything;
if(x){
  console.log("True");
}
if(!!x){
  console.log("True");
}
Output here is always going to be True True ?
 
    
    