hello.js

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

NEW !!!

Wednesday, 13 February, 2019 UTC

8 NEW FEATURES in JavaScript ES2019

The post 8 NEW FEATURES in JavaScript ES2019 appeared first on Codedam. I personally love how JavaScript keeps improving and adding more features. TC39 has finished and approved this 8 features for ES2019 which has 4 stages and those stages are. Stage ... more


Friday, 1 February, 2019 UTC

Spread Operator – Just so you know JavaScript

Spread Operator or Spread Syntax was introduced as part of the ES2015 release and have some really useful features. Basically it expands an iterable such as Array expression, Object expression or a String. Spread Operator looks like this ... then the ... more


Tuesday, 22 January, 2019 UTC

The power of backreference in javascript regular expression

Today I’ll demonstrate the use case of backreference in javascript regular expression. Well some of us, specially a beginner find it hard to learn regular expression and we don’t quite appreciate writing regular expression because of its complexity. ... more


Thursday, 20 December, 2018 UTC

Just so you know: Random Facts 2

So this is the second part of “Just so you know: Random Facts” where I’m going to share more stuff about Javascript. Conditional Chain (Shorthand Version) You might do if statement like this. function compareNumbers(a, b) { if( a == b ) { return 'isEqual' ... more


Sunday, 16 December, 2018 UTC

JavaScript Random Facts – Null is an object

The post JavaScript Random Facts – Null is an object appeared first on Codedam. This is my third post for the series “Just so you know” where we are going to unlock deeper knowledge about JavaScript codes. For those who are new here in this blog, this ... more


Sunday, 16 December, 2018 UTC

Just so you know: Random Facts

This is my 3rd post for the series “Just so you know” where we are going to unlock deeper knowledge about JavaScript codes. So without further ado. Let’s proceed to our first code. NaN (Not A Number) is a type of number. Crazy right? even though NaN ... more


Wednesday, 12 December, 2018 UTC

Just so you know: Uncommonly used Array Methods

Welcome to the second episode of the “Just so you know” series where we talk about Array Methods in JavaScript. For those who are new here in this blog, this series talks about things that some of you might know or not. So now I’m going to introduce ... more


Wednesday, 12 December, 2018 UTC

Just so you know: Array Methods

Welcome to the second episode of the “Just so you know” series where we talk about Array Methods in Javascript. So now I’m going to introduce to you some rarely used Array Methods which the popular once are map, reduce and filter. Reverse We will start ... more


Sunday, 9 December, 2018 UTC

Just so you know: Functional Programming

This is my first blog for the series called “Just so you know” where I will talk about things that you might already know or not. So for now we going to talk about Functional Programming. What is Functional Programming? a programming paradigm just like ... more


Sunday, 9 December, 2018 UTC

Just so you know: Functional Programming

This is my first blog for the series called “Just so you know” where I will talk about things that you might already know or not. So for now we going to talk about Functional Programming. What is Functional Programming? a programming paradigm just like ... more


Wednesday, 3 October, 2018 UTC

Angular ERROR Error: “[object Object]”

Maybe I know why your here. It's because you encounter this random error which is not detailed and makes you wonder where on your code this error occurred. Turns out its a browser issue. If your using Mozilla Firefox then probably your encountering this ... more


Wednesday, 3 October, 2018 UTC

Angular Load Background Image First

Some of our apps like landing or login page, We use background image to make it more beautiful and presentable. It loads fine when its on our local but when we deploy it in our production server, most of us encounter the background image delays to load, ... more