Question #202

Author: admin
tags: JavaScript  
function greeting() {
  return 'hi';
}

const result = greeting.toString();

console.log(result); // ??
What will be printed?
'[object Object]'
'[object Function]'
'hi'
'greeting'
String with code of the function:
function greeting() {
  return 'hi';
}
Rate the difficulty of the question:
easyhard