The journey of #100DaysOfCode (@anshul_bhardwaj)

Hi everybody,
I have heard a lot about #100daysof code. I came across this concept via my buddy @SourabhBagrecha who briefed me and intrigued me to be a part of it.
After seeing him making consistent progress and learning while he was doing the challenge, I am quite impressed and motivated to do the same.
Hence, I have decided that I will take the baton from here and will start my journey of 100daysofcode from today.

I will be sharing my daily updates here in the replies to this topic.
100

Wish me luck :crossed_fingers:.

Regards,
Anshul Bhardwaj,

8 Likes

#Day1 of #100daysofcode

Today I learned about basics of web development. The role of Front-End, Back-End and server. Also I covered HTML basics such as HTML Boilerplate, VSCodes, anchor tags and comments.

5 Likes

#Day2 of #100daysofcode

Today I learned about various elements used in HTML such as div, img src, ordered and unordered list, semantic markups and entity codes.


<head>
    <title>Div Align Attribbute</title>
</head>

<body> <ol>
    <div align="left">
        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
        labore et dolore magna aliqua.
    </div>
    <div align="right">
        <font color="blue">
            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
            labore et dolore magna aliqua.</font></ol>
    </div>
    <img src="100.png" </div>
</body>

</html> ```
3 Likes

Good luck @anshul_bhardwaj! If you have any doubt, the developer’s community is here for help. Happy coding!

2 Likes

Day3 of #100daysofcode

Today I learnt about basics of CSS which included CSS selectors such as Universal,ID, Descendant selectors. Apart from that I also covered sections consisting Box Model.

2 Likes

#Day4 of #100daysofcode

Today I learnt about basics of JavaScript which consisted variables and let, Nan, constant variables, Boolean and variable naming and conventions.

2 Likes

#Day5 Of #100daysofcode

Today I covered the JavaScript fundamentals of strings which consisted string method with arguments,undefined and null, random numbers and maths and much more.

1 Like

#Day6 Of #100daysofcode

Today I learnt about decision making with codes, Comparison operators , Console, alert and prompt, If and else statements, Logical AND, OR and NOT.

2 Likes

#Day7 Of #100daysofcode

Today I exercised JavaScript arrays which consisted Lotto Numbers, Array Random Access,
Push and Pop, Slice and Splice, Multi-dimensional and much more.

1 Like

#Day8 Of #100daysofcode

Today I learned about Object Literals which consisted accessing data out of objects, modifying objects and nesting arrays and objects. After that I covered repeating stuffs with loops and different examples and exercises related to this topic.

2 Likes

#Day9 of #100daysofcode

Today I covered various coding exercises which consisted heart function, rant values,multiple args,return keyboard,isshortsweather, return value,last element, capitalize and Sum arrays in JavaScript.

2 Likes

#Day10 of #100daysofcode

Today I learnt about function scope, lexical scope, block scope, function expressions, higher order functions, returning and defining functions. Apart from that I covered foreach method, map method and Arrow functions.

2 Likes

#Day11 of #100daysofcode

Today I learned about Default Params and Spread in Function calls in JavaScript.

2 Likes

#Day12 of #100daysofcode

Today I exercised spread with array literals,spread with objects and rest params.

2 Likes

#Day13 of #100daysofcode

Today I studied destructuring arrays,destructuring params and destructuring objects.

3 Likes

#Day14 of #100daysofcode

Today I covered DOM which consisted introduction,the document object and getElementByld

2 Likes

#Day15 of #100daysofcode

Today I exercised getElementByTagName and Class name, querySelector and querySelectorAll.

2 Likes

#Day16 of #100daysofcode

Today I exercised innerHTML, textContent and innerText.

2 Likes

#Day17 of #100daysofcode

Today I exercised changing styles and attributes in JavaScript.

container.style.textAlign = 'center'
const img = document.querySelector('img')
img.style.width = '150px'
img.style.borderRadius = '50%' ```
2 Likes

#Day18 of #100daysofcode

Today I practised Rainbow Text and Classlist exercises.

const span = document.querySelectorAll('h1 span')
for (let i=0; i<span.length; i++) {
    span[i].style.color= colors[i]
}
2 Likes