what is “Doctype” in html

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "October 26, 2015";

“Doctype” is a declaration for a html page that tells the browser type of html.

doctype declaration for html 5 is

<!DOCTYPE html>

}