Welcome to Aries Web Solution

Freelance Web Developer Group

Aries Web Solution

အလွတ်တန်း ပညာရှင်အဖွဲ့အစည်းအဖြစ် ရပ်တည်နေပြီးအရည်အသွေးပြည့်မီသော Web Application, Mobile Application များကို တည်ဆောက်ပေးနေပါသည်။

Our Mission

စေတနာနှင့် အတတ်ပညာ နှစ်ခုပေါင်းပြီး နှစ်ဦးနှစ်ဖက် အကျိုးရှိစေမည့် ဝန်ဆောင်မှုပေးရန်။

Latest Blog Posts

ES6: Declare a Read-Only Variable with the const KeywordMarch 22, 2019

let is not the only new way to declare variables. In ES6, you can also declare variables using the const keyword. const has all the awesome features that let has, with the added bonus that variables declared using const are read-only. They are a constant value, which means that once a variable is assigned with const, it cannot be reassigned. As you can see, trying to reassign a variable declared…

Continue Reading →

Var,Let,Const in ES6March 22, 2019

When you declare a variable with the var keyword, it is declared globally, or locally if declared inside a function. The let keyword behaves similarly, but with some extra features. When you declare a variable with the let keyword inside a block, statement, or expression, its scope is limited to that block, statement, or expression. For example: var numArray = []; for (var i = 0; i < 3; i…

Continue Reading →