Here goes my first blog post related to coding.
Well... my first time coding was with C+, which was a long time ago.
The first thing I did with C+ was to write lines of code that would output the words "Hello World" onto a console screen. As seen below:
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
I guess that's how everyone starts out. Even with JavaScript (JS).
But with JS it's written:
console.log('Hello World');
...so much simpler. This is one of the reasons I like to learn JS.
Top comments (1)
Hello and welcome to DEV Community ! ππΌπ
You can say hi to the Welcome Thread, introduce yourself and talk what you're learning !
Hope y'all enjoy it here! If you're wondering how to get started with posting a post, then consider checking out this article here.
How to Write Your First Post on DEV
Chris Achard γ» Sep 5 '19 γ» 3 min read