9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
|
const name = 'James'
|
||
|
|
||
|
const person = { first: name }
|
||
|
|
||
|
console.log(person)
|
||
|
|
||
|
const sayHelloLinting = (fName) => {
|
||
|
console.log('hello linting, ${fName}');
|
||
|
};
|