(14Answer
(Choose 1 answer)
Consider the code:
function change(obj){obj. innerHTML = Date();}
<button>click me</button>
What is the right option to call the method change() when clicking on the button?
A. <a href="change(this)"><button>click me</button></a>
B. <a src="change(this)"><button>click me</button></a>
C. <button click="change(this)">click me</button>
D. <button onclick="change()">click me</button>
E. <button onclick="change(this)">click me</button>