RJRohit Juyalinshreerohitrj.hashnode.dev·Mar 20, 2023 · 2 min readday 14 of 1000 dayswelcome, today is more of a personal blog than coding. Css(revision): Layout -- It is basically arranging elements in a specific way. Earlier we used to do it with float but now flex and grid are more used for layout. Float is done by setting propert...00
RJRohit Juyalinshreerohitrj.hashnode.dev·Mar 16, 2023 · 2 min readday 13 of 1000 daysWelcome to my blogs. css: (revision ) I will mention revision in brief. Always use css for styling and html for semantics like h1 should be used for semantic heading not for making it big/bold, use strong/blod for that. Also, remember that css style ...00
RJRohit Juyalinshreerohitrj.hashnode.dev·Mar 12, 2023 · 3 min readday 11 ,12 of 1000 daysWelcome to my blog. Js:- I revised the topics I have covered. For that I am using eloquent js book, its pdf is available at their site. I will mention all of them in brief. In js we have expressions, which are code that gives some value and statement...00
RJRohit Juyalinshreerohitrj.hashnode.dev·Mar 6, 2023 · 2 min readday 10 of 1000 days of code (BigO and some patterns)DSA- BigO tells the performance of algo, it takes into account of the worst possible outcome. There are two ways to calculate 1) time analysis and 2)space analysis. In time analysis we calculate the number of operations (not time coz it may vary for ...00
RJRohit Juyalinshreerohitrj.hashnode.dev·Mar 1, 2023 · 2 min readday 09 of 1000 days of codeWelcome, I hope you are doing well in life. Typescript- type simply means data types. It is an extension of javascript, like a pre-processor. In the end, it will be compiled to javascript only and add checks to it. The reason for introducing it was j...00