js hello world

JavaScript
// Output Hello World! in the console.
console.log("Hello World!");var msg = "hello world";
console.log(msg);alert("Hello world");let thisIstheSourceObjectforOurhelloWorldCode = {character1:"h",character2:"e",character3:"l",character4:"l",character5:"o",character6:"SPACE",character7:"w",character8:"o",character9:"r",character10:"l",character11:"d"}
let thisIsAnArrayContainingAlltheObjectKeyswhicheachrepresenttheindextoacharacter = Object.keys(thisIstheSourceObjectforOurhelloWorldCode)
let thisisanarraycontainingeachcharacterwegrabbed = []
let thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = ""
for(let thisisanindexervaluewhereforeachtimeourlooprunsthiswillgoup = 0;thisisanindexervaluewhereforeachtimeourlooprunsthiswillgoup<thisIsAnArrayContainingAlltheObjectKeyswhicheachrepresenttheindextoacharacter.length;thisisanindexervaluewhereforeachtimeourlooprunsthiswillgoup = thisisanindexervaluewhereforeachtimeourlooprunsthiswillgoup + 1){
 let thisistheindexfortheactualvaluefortheobjectthatwegrabbedwiththekey = thisIsAnArrayContainingAlltheObjectKeyswhicheachrepresenttheindextoacharacter[thisisanindexervaluewhereforeachtimeourlooprunsthiswillgoup]
let thisistheactualvaluethatwegrabwiththeindex = thisIstheSourceObjectforOurhelloWorldCode[thisistheindexfortheactualvaluefortheobjectthatwegrabbedwiththekey]
thisisanarraycontainingeachcharacterwegrabbed.push(thisistheactualvaluethatwegrabwiththeindex)
}

for(let thisisanotherindexwherewegothrougheachofourcharacterstoprint = 0;thisisanotherindexwherewegothrougheachofourcharacterstoprint<thisisanarraycontainingeachcharacterwegrabbed.length;thisisanotherindexwherewegothrougheachofourcharacterstoprint = thisisanotherindexwherewegothrougheachofourcharacterstoprint + 1 ){
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "h"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"H"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "e"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"e"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "l"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"l"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "o"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"o"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "w"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"W"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "r"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"r"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "d"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +"d"
}
if(thisisanarraycontainingeachcharacterwegrabbed[thisisanotherindexwherewegothrougheachofourcharacterstoprint] == "SPACE"){
thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters = thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters +" "
}
}
console.log(thisisthestringweconcatenatetogetheraftergrabbingandtransformingallourcharacters)console.log("Hello World!");console.log("Hello, World!");

console.error("Error, World!"); // For errors

console.warn("Warning, World!"); // For warnings

console.clear(); // To clear the console
Source

Also in JavaScript: