21. Consider the below code snippets, What will be the output?


function bark() {
  console.log('Woof!');
}

bark.animal = 'dog';

console.log(bark.animal)
bark()