Junior — Senior
What will appear in the console when calling function №8
livecode
Task condition
greet();
greetArrow();
function greet() {
console.log('Hello!');
}
const greetArrow = () => {
console.log('Hello!');
}
What will be the output in the console?