Well done!
You have completed Principles and Applications Quiz!
Quiz Question 1 of 6
Consider the following code snippet:
let ret = duplication("Go");
function duplication(p) {
return p + "! " + p + "!";
}
Which of the following concepts allows this function to be called before its declaration in the code?
Choose the correct answer below: