DEV Community

Discussion on: Of course HTML is a programming language

 
stereobooster profile image
stereobooster • Edited

You saying "instruct" as if alert('Hey') (or any other JS function) have some magic powers to actually instruct computer. No it doesn't. Browser reads it, converts to instruction set, sends it processor (or GPU or...) and eventually machine executes it.

What happens with HTML? Browser reads it, converts it to instruction and send it to machine, which executes it.

Thread Thread
 
tarascz profile image
Jiří Tarašovič

That sounds like over-simplyfication to me.
You could also say that about writing into Word document. Word have to do the same to be able to display formatted document, but it doesn't make Word a programming language.