Popular posts from this blog
Google Pixel 2 Watch: A Review of the Latest Smartwatch from Google
Google Pixel Watch 2: Everything you need to know Google has finally unveiled its second-generation smartwatch, the Google Pixel Watch 2, at its Made by Google event on October 4, 2023. The new watch comes with a host of improvements and features that make it a worthy successor to the original Pixel Watch. Here's everything you need to know about the Google Pixel Watch 2. Design and display The Google Pixel Watch 2 has a sleek and minimalist design that features a circular 1.2-inch AMOLED display with a resolution of 416 x 416 pixels. The display is bright and sharp, and supports always-on mode for easy glanceability. The watch also has an ambient light sensor that adjusts the brightness automatically according to the environment. The watch case is made of 100% recycled aluminum, which makes it lighter and more eco-friendly than the previous model. The watch also has a larger and more flush crown that can be used to navigate the interface and access Google Assistant. The watch is a...
ES6 for Beginners - Part 1
Hello Readers, In this post I will walk you through the some of the basic ES6 Features. This post will help you if you are new to ES6 and help in learning other Front End Libraries. In this post I will walk you through the following ES6 Features Let and Const Arrow functions Default parameters for of loop Spread attributes Maps Sets Static methods Getters and Setters Let let is similar to var but let has scope. let is only accessible in the block level it is defined. if (true) { let a = 40; console.log(a); //40 } console.log(a); // undefined In the above example variable ‘a’ is defined inside If statement and so it’s not accessible outside the function. Another example: let a = 50; let b = 100; if (true) { let a = 60; var c = 10; console.log(a/c); // 6 console.log(b/c); // 10 } console.log(c); // 10 console.log(a); // 50 Const Const is used to assign a constant value to the variable. And the value cannot be changed. Its fixed. const a = 50...

Comments
Post a Comment