```jsx
// multi-assignment
let city = 'cs', age = 18;
```
//syntax typeof;
typeof city, age;
// the result: number, no string
// what is more: no camel syntax in "typeof" about 'of'
console.log(typeof city);
// also
typeof city; //in browser's console, can indirectly run