Question 36 of 10036%
36
Consider the below code snippets, What will be the output?
function bark() {
console.log('Woof!');
}
bark.animal = 'dog';
console.log(bark.animal)
bark()
36/100
function bark() {
console.log('Woof!');
}
bark.animal = 'dog';
console.log(bark.animal)
bark()