Prevent jquery from appending element as string in Chrome Console

I’m trying to append elements to body in chrome console on instagram website.

The problem is when I try to append $('body').append('<div>Hello World</div>');

It appends the element like so :

"<div>Hello World</div>"

Notice quotation marks around the element. so the element is not appending for real.