-
LEETCODE SERIES || DAY 5 || (70) Climbing stairs
Day 5 Leet code series, today we will be picking the problem Climbing Stairs (https://leetcode.com/problems/climbing-stairs/).
-
LEETCODE SERIES || DAY 4 || (15) 3sum
Day 4 Leet code series, today we will be picking the problem Three sum (https://leetcode.com/problems/3sum/).
-
LEETCODE SERIES || DAY 3 || (167)Two Sum II – Array is Sorted
Day 3 Leet code series, today we will be picking the problem two sum II – Array is Sorted (https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/).
-
LEETCODE SERIES || DAY 2 || (136) Single Number
Day 2 Leet code series, today we will be picking the problem Single Number (https://leetcode.com/problems/single-number/).
-
LEETCODE SERIES || DAY 1 || (121)Best Time To Buy And Sell Stocks
Day 1 Leet code series, today we will be picking the problem best time to buy and sell stocks (https://leetcode.com/problems/best-time-to-buy-and-sell-stock/).
-
Javascript get Date()
To get a new date we can use This will return a date in a format : Sun Jul 25 2021 14:12:05 GMT+0530 (India Standard Time) Most of times we don’t have to show the date in this format. We can control that using a trick. Before that we should know some of the functions…
-
Migrating to webpack 5 to improve build time and reduce chunk sizes
https://tech.oyorooms.com/migrating-to-webpack-5-to-improve-build-time-and-reduce-chunk-sizes-50486918d348
-
Web sockets
Web is completely dependent on client-server connections. The client asks for requests and server responds to these requests with a response. This request-response paradigm is very commonly used and they carry the overhead of HTTP, which doesn’t make them well suited for low latency applications. Till the user has not made any action like clicking the…
-
Private Fields in Javascript
What are private fields? Private fields are basically private variables that can not be accessed easily. To access these variables one need to access through the private data functions. Deep diving in javascript’s context, these are added to the JavaScript language through the TC39 proposal process, as part of the class fields proposal, which is at Stage 4…
-
Style console.log contents / statements
The console.log output can be styled using the CSS format specifier. Also we can manipulate console.log output colors and fonts. Even we can give border, padding or add an image in the console. The console plays an important role in the development process. When using consoles, we can use for logging the statements to check…