hello.js

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

NEW !!!

Tuesday, 26 March, 2019 UTC

Javascript Objects Tutorial Example | Working With Objects in JS

Javascript Objects Tutorial Example | Working With Objects in JS is today’s topic. JavaScript is designed on the simple object-based paradigm. An object is the collection of properties, and property is an association between a key and a value. In JavaScript, ... more


Friday, 22 March, 2019 UTC

Go Slice Append Example | Golang Append Tutorial

Go Slice Append Example | Golang Append Tutorial is today’s topic. The built-in append function appends any number of elements to the end of a slice. Append returns the updated slice and it does not modify the existing one. So it is Pure function in ... more


Friday, 22 March, 2019 UTC

Go For Loop Example | Golang Loops Tutorial

Go For Loop Example | Golang Loops Tutorial is today’s topic. Go has only one looping construct which is the for loop. The for loop has three components separated by semicolons which are following. The init statement : The init statement executed before ... more


Wednesday, 20 March, 2019 UTC

Go Slices Tutorial With Example | Slices in Golang

Go Slices Tutorial With Example | Slices in Golang is today’s topic. An array has a fixed size. A slice, on the other hand, is a dynamically-sized, flexible view into the elements of an array. A Slice is the segment of an array. The slices build on arrays ... more


Friday, 15 March, 2019 UTC

Javascript Object Freeze Example | Object.freeze() Tutorial

Javascript Object Freeze Example | Object.freeze() Tutorial is today’s topic. The Object.freeze() method freezes an object. The frozen object can no longer be changed; freezing an object prevents new properties from being added to it, existing properties ... more


Friday, 15 March, 2019 UTC

Javascript Object Values Example | Object.values() Tutorial

Javascript Object Values Example | Object.values() Tutorial is today’s topic. The Object.values() method returns the array of the given object’s enumerable property values. The ordering of the properties is the same as that given by the object manually ... more


Thursday, 14 March, 2019 UTC

Javascript Array Includes Example | Array.prototype.includes() Tutorial

Javascript Array Includes Example | Array.prototype.includes() Tutorial is today’s topic. The includes() method determines whether the array contains the specified element. It returns true or false as output depending on the result. The Javascript Array ... more


Wednesday, 13 March, 2019 UTC

ES6 Modules in Node Tutorial With Example

ES6 Modules in Node Tutorial With Example is today’s topic. ES6 Modules are useful when we need to make objects, functions, classes or variables available to the outside world it’s as simple as exporting them and then importing them where needed in other ... more


Friday, 8 March, 2019 UTC

Laravel 5.8 CRUD Tutorial With Example For Beginners

Laravel 5.8 CRUD Tutorial With Example For Beginners is today’s topic. You can upgrade your Laravel’s 5.8 version by going to this link. Laravel 5.8 continues the improvements made in Laravel 5.7 by introducing the following features. has-one-through ... more


Tuesday, 26 February, 2019 UTC

Javascript Error Object Tutorial With Example

Javascript Error Object Tutorial With Example is today’s topic. The Error constructor creates an error object. Instances of Error objects are thrown when runtime errors occur. The Error object can also be used as a base object for user-defined exceptions. ... more


Monday, 25 February, 2019 UTC

Javascript Ternary Operator Tutorial | Condition Operator Example

Javascript Ternary Operator Tutorial | Condition Operator Example is today’s topic. The conditional or ternary operator is the only JavaScript operator that takes the three operands. This operator is frequently used as the shortcut for the if statement. ... more


Monday, 25 February, 2019 UTC

Javascript Math Round Example | Math.round() Tutorial

Javascript Math Round Example | Math.round() Tutorial is today’s topic. The Math.round() function returns the value of a number rounded to the nearest integer. If the fractional portion of an argument is more than 0.5, the argument is turned to an integer ... more


Wednesday, 20 February, 2019 UTC

Javascript Math Random Tutorial | Math.random() Example

Javascript Math Random Tutorial | Math.random() Example is today’s topic. It returns a random number between 0 (inclusive) and 1 (exclusive). The implementation selects the initial seed to a random number generation algorithm; it cannot be chosen or ... more


Wednesday, 20 February, 2019 UTC

Javascript Delete Operator Tutorial | Remove Property From Object

Javascript Delete Operator Tutorial | Remove Property From Object is today’s topic. The delete operator deletes a property from the object. If no more references to a same property are held, it is eventually released automatically. The delete operator ... more


Tuesday, 19 February, 2019 UTC

Javascript For In Loop Tutorial With Example

Javascript For In Loop Tutorial With Example is today’s topic. The for…in statement iterates over all non-Symbol, enumerable properties of the object. Objects created from built-in constructors like Array and Object have inherited non–enumerable properties ... more


Friday, 15 February, 2019 UTC

Javascript Typeof Example | typeof Operator Tutorial

Javascript Typeof Example | typeof Operator Tutorial is today’s topic. The typeof operator returns the string indicating a type of the unevaluated operand. In JavaScript, the typeof operator returns a data type of its operand in the form of the string. ... more


Thursday, 14 February, 2019 UTC

Node Express Image Upload and Resize Tutorial Example

Node Express Image Upload and Resize Tutorial Example is today’s topic. Node.js as a platform and express as a lightweight framework is the best choice for backend development. We can build Web APIs through this framework very quickly, and it has tremendous ... more


Wednesday, 13 February, 2019 UTC

How To Clone Object In Javascript Tutorial With Example

In this tutorial, we will see How To Clone Object In Javascript. Objects are the fundamental data structure of JavaScript. The Javascript object is the collection of properties, and property is an association between the key-value pair. JavaScript offers ... more


Wednesday, 13 February, 2019 UTC

How To Get Timestamp In Javascript | Javascript Timestamp Example

In this tutorial, we will see How To Get Timestamp In Javascript. As a software developer, you can’t run away from date manipulation. Almost every app a developer builds will have some component where date/time needs to be obtained from the user, stored ... more


Wednesday, 13 February, 2019 UTC

Angular Modal Tutorial With Example | Angular Material Dialog

Angular Modal Tutorial With Example is today’s topic. We will use Angular Material for this demo. We use Angular 7 for this example. Angular Material is the ground running with significant, modern UI components that work across the web, mobile, and desktop ... more


Wednesday, 13 February, 2019 UTC

Angular NgFor Tutorial With Example | NgForOf Directive

Angular NgFor Tutorial With Example | NgForOf Directive is today’s topic. NgFor structural directive renders the template for each item in the collection. The ngForOf is generally used in the shorthand form *ngFor . The core directive ngFor allows us ... more


Wednesday, 13 February, 2019 UTC

Angular 7 NgStyle Tutorial With Example | Angular NgStyle

Angular 7 NgStyle Tutorial With Example | Angular NgStyle is today’s topic. An attribute directive that updates styles for the containing HTML element. Sets one or more style properties, specified as colon-separated key-value pairs. The NgStyle directive ... more


Wednesday, 13 February, 2019 UTC

Javascript Date Methods and Objects Tutorial With Example

Javascript Date Methods and Objects Tutorial With Example is today’s topic. Working with date and time in JavaScript can be complicated. JavaScript offers us the date handling functionality through a sturdy object, and it is Date . By default, JavaScript ... more


Wednesday, 13 February, 2019 UTC

Javascript ParseInt Example | parseInt() Function Tutorial

Javascript ParseInt Example | parseInt() Function Tutorial is today’s topic. Javascript parseInt() method converts the string into an integer (a whole number). It accepts the two arguments. The first argument is the string, which needs to convert and ... more


Sunday, 10 February, 2019 UTC

How To Display Data In Angular | Angular 7 Display Data

How To Display Data In Angular | Angular 7 Display Data is today’s topic. We can display the data in whatever format we want. The general use case is to display the data in tabular format means in table format. In real Angular app, the data is dynamic ... more


Friday, 8 February, 2019 UTC

Python Requests Tutorial With Example | Requests Module

Python Requests Tutorial With Example or Requests Module in Python is today’s topic. Requests is an Apache2 Licensed HTTP library which is written in the Python Programming Language. It is designed to interact with apis. That means you don’t have to ... more


Friday, 8 February, 2019 UTC

Angular 7 NgClass Tutorial With Example | Angular NgClass

Angular 7 NgClass Tutorial With Example | Angular NgClass is today’s topic. If you are new to Angular 7, then check out this Angular 7 CRUD Tutorial article. Angular NgClass adds and removes CSS classes on an HTML element. The NgClass directive in Angular ... more


Wednesday, 23 January, 2019 UTC

Javascript String ToLowerCase Example | String.prototype.toLowerCase() Tutorial

Javascript String toLowerCase Example | String.prototype.toLowerCase() Tutorial is today’s topic. The toLowerCase() method returns a calling string value converted to lower case. The new string representing the calling string converted to a lower case. ... more


Wednesday, 23 January, 2019 UTC

Javascript String ToUpperCase Example | String.prototype.toUpperCase() Tutorial

Javascript String ToUpperCase Example | String.prototype.toUpperCase() Tutorial is today’s topic. The String toUpperCase() method converts a string to uppercase letters. Javascript String toUpperCase() method returns the calling string value converted ... more


Wednesday, 23 January, 2019 UTC

Javascript String Includes Example | String.prototype.includes() Tutorial

Javascript String Includes Example | String.prototype.includes() Tutorial is today’s topic. The string includes() method determines whether one string may be found within another string, returning true or false as appropriate. With ES6 JavaScript added ... more