February 17, 2017 by Marco Cecconi
One of the most common questions about programming is what language should be used. I think that at this point in time the answer is clearly JavaScript. The reason is simple: it's everywhere a browser is, and it is powerful enough to be way more than a toy.
Press F12
on this browser window. Or Hamburger Menu→More Tools…→Developer Tools→Console.
Now you should see something like the following image, and do note which "tab" is selected, and if different, click on the correct one!
Let's tell the computer to write out your name. Here's how I did it for mine, type next to the >
something like
console.log("Sklivvz is a nice person")
and press enter. Result? The computer knows how to treat me right.
Programmers write… programs. A program is a set of lines of code executed in sequence. We can either type these instructions in sequence, or we can build a list of instructions and execute them all at once. Try typing this
function program() {
console.log("Sklivvz is a nice person")
console.log("And this is a second line")
}
As you can see, nothing is printed when you press Enter
, just undefined
. The computer has stored your program but is waiting for your command to execute it. In order to do so, use the following command:
program()
Hopefully this piqued your interest! If you want to know more and learn more commands to give to your computer you can head off to javascript.com where there is a nice tutorial.
I also am publishing a series of beginners posts, starting with variables here.
Have fun!
Hi, I'm Marco Cecconi. I am the founder of Intelligent Hack, developer, hacker, blogger, conference lecturer. Bio: ex Stack Overflow core team, ex Toptal EM.
Read moreMarch 12, 2023 by Marco Cecconi
Stack Overflow could benefit from adopting a using conversational AI to provide specific answers
Read moreOctober 15, 2021 by Marco Cecconi
Multiple people with my name use my email address and I can read their email, chaos ensues!
Read moreSeptember 29, 2021 by Marco Cecconi
After years of building, our top-notch consultancy to help start-ups and scale-ups create great, scalable products, I think it is high time I added an update to how it is going and what's next for us.
Read moreFebruary 03, 2021 by Marco Cecconi
A lesson in building communities by Stack Overflow's most prominent community manager emeritus, Shog9
Read moreDecember 02, 2020 by Marco Cecconi
Some lessons learned over the past 8 years of remote work in some of the best remote companies on the planet
Read moreSoftware engineers go crazy for the most ridiculous things. We like to think that we’re hyper-rational, but when we have to choose a technology, we end up in a kind of frenzy
Read more…