Select Sidearea

Populate the sidearea with useful widgets. It’s simple to add images, categories, latest post, social media icon links, tag clouds, and more.

[email protected]
+1234567890

Author: admin

Although it is a little late to talk about this, 11th edition of ECMAScript language specification was published in 2020(ECMAScript 2020). Some of the key new features of this 11th edition, have been discussed below. Dynamic Imports The standard import syntax in JavaScript is static. Static import statement looks like: import * as newModule from '/modules/dynamicmodule.js'; This will always evaluate the code of the imported module at the time...

Read More

Requirement: Youtube channel Youtube stream key Node   Steps to get youtube stream key   1) Go to youtube and click on Go Live as shown in the image below:   2) Copy the stream key. We need to use this in our project.   Steps to create a node project.   1) Create a folder and open it in terminal. Run the following commands. npm init npm install --save @ffmpeg-installer/ffmpeg 2) Open the code in an editor. Create a file...

Read More

How to connect to Google Drive API with a Node.js application Google Drive API allows you to read, write and sync files in Google Drive using your application. You can download and upload files, as well as search files and folders stored in Google Drive. You need to have the following, before getting started: Google account Node.js installed Create a new folder for your project and run ‘npm-init’. Once done,...

Read More

There are multiple ways "this" is bound in a function. It depends on how function is called: 1. Constructor function var student = function(name, stu_class, score) { this.name = name; this.stu_class = stu_class; this.score = score; console.log(this)} var uniStudent = new student("Smith", "B.Tech.", "8.8");  // It should log student object. 2. Strict mode in function function add20(a) {'use strict'; console.log(this); return a + 20;} add20(100); // It should log undefined. 3. Function without strict mode function add100(a)...

Read More

G Suite is a portfolio of productivity applications with over 1.5 billion active users. Over 5 million businesses use G Suite. Here are the top 10 announcements for new features for G Suite in Cloud Next '19 conference in San Francisco, Apr 9-11, 2019. You can now add meta data to content in Google Drive and also have ability for document approvals. Integrated digital assistants...

Read More

JavaScript was created by NetScape employee, Brendan Eich in the year 1995. It was developed as a simple and lightweight scripting language. Its purpose was to include some form of program within the browser, to increase interactivity without the delay of reloading the whole web page from the server. The popularity of JavaScript actually grew after NetScape was acquired by AOL and they eventually turned over...

Read More

Are you using Google productivity tools (G Suite) for your business? [gallery columns="7" ids="869,868,867,866,865,864,863"] Do you spend lot of time manually solving problems similar to these Sending customized emails to multiple people Using Google Forms to collect data in spreadsheets and integrate with standard CRM or Accounting software Managing your business work flow - while still using Gmail, Docs, Forms and Spreadsheets Integrating Google Maps into your...

Read More

Why use Trello? Trello is an easy, free, flexible, and visual way to manage your projects and organize anything, trusted by millions of people from all over the world. It is a very visual platform, where projects and tasks are managed as cards visible on the home page. Team members can view the cards assigned to them, update their statuses and collaborate on tasks with other...

Read More