Could I use The "with statement" extends the scope chain for a statement?

Could I use

let data = {a:1, b:2, c:3};

with(data){
   console.log(a);
   console.log(b);
   console.log(c);
}