Riyan Hasan
3 min readFeb 19, 2021

--

Tips should know as a junior developer

Answers to become a web developer-

1.I don’t have creativity- The first thing that you need is patience yes I repeat only patience. It is not about creativity either talent it’s just about practice. The more you stick into it the
more you will learn it.

2.I don't have any resources- trust me if you have any smart device and a bit of internet you are just ready for it. You don’t need any high technical device or something
Whatever you need is just focus and that determination. I am myself proof of that. I am using a Celeron processor laptop which is ten+ years old and I am still learning
well.

3.When to start- I think “now” is the only answer . Just do it now don’t think for further if you have that passion it is your time to start. Just sit in front of your computer and download any if you have notepad++ that is also okay. Or you can download pyCharm, visual studio, RubyMine, etc.

4.Resources- If you have internet You don’t need anyone or anything else trust me just focus on a specific course. There are thousands of free sources and videos for beginner to intermediate.

Here you go ready for your first website.

5 things should know as a Junior Developer-

1.HTML, CSS- Nowadays we can find a lot of frameworks but CSS, HTML is a must this is the core and basic of web development which should know by every developer especially junior developer. How to use every tag and utilize them properly.Sources to learn HTML/CSS- w3 Schools,MDN,Geek for Geeks,StackOverflow etc.

2.JavaScript- If a developer wants to make their website dynamic JS is a must. JS is like oil to a car which gives life to a car and JS is similar gives life to the website.

3.GitHub- Git hub is like a life-saving hack. It is not possible for us to host a domain so how do we show our work to everyone? Um? “GITHUB” helps us to share our works and helps us to be productive. It is a must for a junior developer to know how to open new repository upload work. How to clone from Github, push, pull, commit, and so on.

4.API-Application Programme Interface It allows developers to use some of the functionality without sharing the code I found this system is really interesting.
A junior developer can easily build websites like music playlists, Restaurant menus, and so on.

5.Searching for a solution- It will be a part of daily life no one can master everything so a developer must learn to find out the solution. How to search on the internet for a specific problem and their solutions like how to use alert, loop, how to develop a code more and more.

Things I learn on JS -

Array- Array is like inserting similar elements together you can use an array in various ways. You can insert numbers, string, data any kind of element. You can first initial your array space and then you can insert elements. It is really effective and saves time, energy and makes code very effective easy-going.

Control Flow- Control flow is basically if-else mostly we use if-else to solve every problem.

let day=’friday’;

if(day ==’friday’){
console.log(“congratulations you are having weekend”);
}

else{
console.log(“go to office don’t need to be a lazy bug”);
}

Loop- Do you remember those school days when you used to have a punishment to write your name about 100 times. It was boring, but now you have the perfect solution you can write
it within miles. It sounds fun right. Exactly you can do this by using for, while, for each.

Error handle- You should read and understand the errors and also try to handle errors to make your code more flexible. You can set catch errors and set any text to make it user-friendly.

Alert- I found this feature interesting you can set it simply on your website to avoid errors as well.

--

--