Arithmetic operators are used to perform arithmetic operations such as addition, subtraction, multiplication, division, etc. The following table shows these opearators Operator Operator Name Example + Addition Operator 6 + …
programmerdude
-
-
Like many other programming languages. It’s good practice to include the comments in our c# code to provide detailed information about the functionality, like what a specific block or line …
-
A keyword is a reserved word. You cannot use it as a variable name, constant name etc. In C# keywords cannot be used as identifiers. However, if we want to …
-
These are for more for JavaScript frameworks Angular.js Angular for the jQuery developer Angular.js Guide Angular.js Material Designing Angular.js Style Guide Angular.js Tutorial AngularJS – Step by Logical Step AngularJS …
-
/* * GLOBAL OBJECTS > OBJECT * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object */ // Global object: properties Object.length // length is a property of a function object, and indicates how many arguments the function …
-
/* * FEATHERS.JS CHEATSHEET * https://docs.feathersjs.com/api/readme.html * * 1. CORE: Feathers core functionality. * 2. TRANSPORT: Expose a Feathers application as an API server. * 3. CLIENT: More details on …
-
/* * SAILS.JS CHEATSHEET * REFERENCE: https://sailsjs.com/documentation/reference * CONCEPTS: https://sailsjs.com/documentation/concepts * APP STRUCTURE: https://sailsjs.com/documentation/anatomy * * 1. APPLICATION * 2. BLUEPRINT API * 3. COMMAND-LINE INTERFACE * 4. CONFIGURATION * …
-
/* * SYNOPSIS * http://nodejs.org/api/synopsis.html */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To run the server, …
-
/* ******************************************************************************************* * GLOBAL CONFIG * Vue.config is an object containing Vue’s global configurations. * You can modify its properties listed below before bootstrapping your application. * https://vuejs.org/v2/api/#Global-Config * …
-
/* ******************************************************************************************* * REACT.JS CHEATSHEET * DOCUMENTATION: https://reactjs.org/docs/ * FILE STRUCTURE: https://reactjs.org/docs/faq-structure.html * ******************************************************************************************* */ “` npm install –save react // declarative and flexible JavaScript library for building UI …