Showing posts with label webdevelopment. Show all posts
Showing posts with label webdevelopment. Show all posts

August 11, 2017

[Code] | Javascript map() - Functional Programming


map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values, including undefined.




1) The map() method creates a new array with the results of calling a provided function on every element in the calling array.


July 26, 2017

Google IO 2017 Moments

I got the opportunity to attend the Google IO 2017 from my company. It was a dream came true. 


For those who don't know what is Google IO - Google IO is 3 days conference for developers. Google do announcement of all the new products and changes/improvements they are doing in these 3 days. 


July 15, 2017

Lighthouse Chrome | Best tool for Web Developers

In 2017 Google IO introduced a new tool - Lighthouse. 

When auditing a page, Lighthouse runs a barrage of tests against the page, and then generates a report on how well the page did. From here you can use the failing tests as indicators on what you can do to improve your app.

June 29, 2016

AskTheGoogle | gServe - How to start with Blogging?

On 28th June, I gave session in Google Gurgaon on "How to Start with Blogging".  There was 30+ guests from diverse background - NGOs, NPOs, Developers, Startups , Bloggers etc. It was very exciting to know

what make them to start their blog?
what makes them to not to start their blogs?


June 25, 2016

Introduction to Web Components

Web components are the W3 standards that let developer make its own custom element and let them think beyond the HTML tags. They make the code actually re-useable, also make the use of encapsulation and abstraction.