hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Thursday, 19 December, 2019 UTC

Angular 8 FormArray Example | FormArray In Angular

Angular FormArray is an inbuilt class that tracks the value and validity state of an array of FormControl, FormGroup, or FormArray instances. For example, if one of the controls in a FormArray is invalid, an entire array becomes invalid. Angular FormArray ... more


Sunday, 8 December, 2019 UTC

How To Covert Javascript Array To JSON Example

In this example, we will see How To Covert Javascript Array To JSON. We can convert Javascript array to json using JSON.stringify() method. At some point in your time, whatever developer you are, you need to deal with JSON data. JSON stands for Javascript ... more


Friday, 6 December, 2019 UTC

How To Update Node Version In Mac In 2020

In this tutorial, we will see How To Update Node Version In Mac In 2020. Right now, Node.js version 13.3 is the latest, and yours might be different depending on when you are reading this article. Web Development is changing rapidly. Development is picking ... more


Friday, 6 December, 2019 UTC

Angular Radio Button Example | Material Radio Button

In this Angular 8 radio button example, we will use the Angular Material library to construct UI/UX. Angular Materials offer a lot of built-in modules for your project. Features such as autocomplete, datepicker, slider, menus, grids, and toolbar are ... more


Thursday, 5 December, 2019 UTC

Angular 8 Select Dropdown Example | Angular Material Select

In this Angular 8 select dropdown example, we will use the Angular Material library to construct UI/UX. Angular Material components will help us in building attractive UI and UX, consistent, and functional web pages and web applications while keeping ... more


Tuesday, 3 December, 2019 UTC

Javascript TypeError Example | Solve TypeError in Javascript

If you are learning Javascript code, then you often face TypeError. Javascript TypeError object represents the error when the operation could not be performed, typically (but not exclusively) when the value is not of the expected type. Javascript TypeError ... more


Saturday, 26 October, 2019 UTC

Javascript JSON.stringify() | How To Create JSON String

Javascript JSON.stringify() converts the JavaScript object into a string, optionally replacing the values if the replacer function is specified or optionally including only the specified properties if the replacer array is specified. JSON.stringify() ... more


Monday, 3 June, 2019 UTC

How To Update Angular CLI To Version 8 | Angular 8 CLI Upgrade

How To Update Angular CLI To Version 8 | Angular 8 CLI Upgrade is today’s topic. Right now according to this post’s date, the Angular version 8 is the latest version. So, in this article, we will upgrade from Angular 7 to 8 . Almost every 6-12 months, ... more


Saturday, 1 June, 2019 UTC

C++ Pointers Tutorial | Pointers in C/C++ with Examples

C++ Pointers Tutorial | Pointers in C/C++ with Examples is today’s topic. A pointer is a variable whose value is the address of another variable. Pointers are a symbolic representation of addresses. They enable programs to simulate call-by-reference ... more


Friday, 31 May, 2019 UTC

Angular 8 Updates And Summary of New Features

Angular 8 Updates And Summary of New Features is today’s topic. Angular 8 arrives with an impressive list of changes and improvements including the much-anticipated Ivy compiler as an opt-in feature. You can check out Angular 7 features and updates if ... more


Friday, 24 May, 2019 UTC

Javascript Class Example | How To Use Class in Javascript Tutorial

Javascript Class Example | How To Use Class in Javascript Tutorial is today’s topic. JavaScript is a prototype-based language, and every object in JavaScript has a hidden internal property called [[Prototype]]. JavaScript ECMAScript 5, does not have ... more


Wednesday, 15 May, 2019 UTC

Javascript Blob Object Tutorial With Example | Blob Object Explained

Javascript Blob Object Tutorial With Example | Blob Object Explained is today’s topic. The Blob object represents a file-like object of immutable, raw data. Blobs represent data that isn’t necessarily in a JavaScript-native format. The File interface ... more


Wednesday, 15 May, 2019 UTC

Javascript Function Call Example | Function​.prototype​.call() Tutorial

Javascript Function Call Example | Function​.prototype​.call() Tutorial is today’s topic. The call() method calls the function with the given this value and arguments provided individually. The call() allows for the method belonging to one object to ... more


Sunday, 21 April, 2019 UTC

Javascript Object toString Example | Object toString() Method Tutorial

Javascript Object toString Example | Object toString() Method Tutorial is today’s topic. The Object​.prototype​.toString() method returns a string representing the object. Every object has the toString() method that is automatically called when an object ... more


Thursday, 11 April, 2019 UTC

How To Get Distinct Values From Array In Javascript

In this tutorial, we will see How To Get Distinct Values From Array In Javascript. Primitive values in the JavaScript are immutable values except for objects. Types of primitive values include Null, Undefined, Boolean, Number, Symbol and String. This ... more


Tuesday, 9 April, 2019 UTC

Javascript Object Is Example | Object.is() Tutorial

Javascript Object Is Example | Object.is() Tutorial is today’s topic. Javascript Object.is() method determines whether two values are the same value. Object.is() method was introduced in ES2015. It aims to help to compare values. Javascript Object Is ... more


Tuesday, 9 April, 2019 UTC

Javascript Null, Undefined and NaN Tutorial With Example

Javascript Null, Undefined and, NaN Tutorial With Example is today’s topic. The value null represents the intentional absence of any object value. The undefined property indicates that the variable has not been assigned a value, or not declared at all. ... more


Saturday, 6 April, 2019 UTC

Javascript Object defineProperty Example | Object.defineProperty() Tutorial

Javascript Object defineProperty Example | Object.defineProperty() Tutorial is today’s topic. The static method Object.defineProperty() defines the new property directly on the object, or modifies an existing property on the object, and returns an object.Object.defineProperty() ... more


Wednesday, 3 April, 2019 UTC

WebSockets Tutorial With Example | Getting Started With WebSockets

WebSockets Tutorial With Example | Getting Started With WebSockets is today’s topic. Web sockets are defined as two-way communication between the servers and clients, which mean both parties can communicate and exchange data at the same time. WebSockets ... more


Wednesday, 3 April, 2019 UTC

Laravel Collections Filter Method Tutorial With Example

Laravel Collections Filter Method Tutorial With Example is today’s topic. If you are not familiar with Laravel Collections, then check out my Laravel Collections Tutorial guide. Laravel Eloquent uses Collections to return the results. Collections contain ... more


Tuesday, 2 April, 2019 UTC

PHP json_encode Example | Encode JSON Data In PHP Tutorial

PHP json_encode Example | Encode JSON Data In PHP Tutorial is today’s topic. PHP json_encode() function converts a PHP value into a JSON value. PHP has some built-in functions to handle the JSON. Objects in PHP can be converted into JSON by using the ... more


Tuesday, 2 April, 2019 UTC

Javascript Array ToString Example | Array.prototype.toString() Tutorial

Javascript Array ToString Example | Array.prototype.toString() Tutorial is today’s topic. The Array toString() method returns a string representing the specified array and its elements. Javascript toString() method converts an array into a String and ... more


Tuesday, 2 April, 2019 UTC

How To Convert PHP Array To JSON Tutorial With Example

In this tutorial, we will see How To Convert PHP Array To JSON. Everyday use of JSON is to read data from a web server and display the data on a web page. When exchanging data between the browser and a server, data can only be in the form of text. JSON ... more


Tuesday, 2 April, 2019 UTC

How To Create Multilingual Website using Laravel Localization

In this tutorial, we will see How To Create Multilingual Website using Laravel Localization. For this example, we will use Laravel 5.8, and we will do it from scratch. If you are not familiar with Laravel 5.8, then please check out my Laravel 5.8 CRUD ... more


Friday, 29 March, 2019 UTC

Javascript encodeURIComponent Function Tutorial With Example

Javascript encodeURIComponent Function Tutorial With Example is today’s topic. The encodeURIComponent() function encodes the Uniform Resource Identifier (URI) component by replacing each instance of certain characters by one, two, three, or four escape ... more


Friday, 29 March, 2019 UTC

Javascript encodeURI Function Tutorial With Example

Javascript encodeURI Function Tutorial With Example is today’s topic. The encodeURI() function is used to encode a URI. The encodeURI() function encodes the Uniform Resource Identifier (URI) by replacing the each instance of certain characters by one, ... more


Thursday, 28 March, 2019 UTC

Javascript Array Every Example | Array.prototype.every() Tutorial

Javascript Array Every Example | Array.prototype.every() Tutorial is today’s topic. The every() method tests whether all items in an array pass the test implemented by the provided function. Javascript Array Every method executes the provided callback ... more


Thursday, 28 March, 2019 UTC

Javascript Array Values Example | Array.prototype.values() Tutorial

Javascript Array Values Example | Array.prototype.values() Tutorial is today’s topic. The values() method returns the new Array Iterator object that contains the values for each index in an array. In the same way, we can retrieve the keys of the array; ... more


Tuesday, 26 March, 2019 UTC

Javascript ArrayBuffer Example | ArrayBuffer Object Tutorial

Javascript ArrayBuffer Example | ArrayBuffer Object Tutorial is today’s topic. The ArrayBuffer object is used to represent the generic, fixed-length raw binary data buffer. You cannot directly manipulate the contents of the ArrayBuffer. ArrayBuffer is ... more


Tuesday, 26 March, 2019 UTC

Javascript Strict Mode Tutorial With Example | Modern Use of Strict Mode

Javascript Strict Mode Tutorial With Example is today’s topic. JavaScript ( JS ) is a lightweight interpreted or JIT-compiled programming language with first-class functions. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting ... more