Posts

Showing posts from May, 2020

Dart Programming Tutorial (1/3)

Image
What is Dart 🎯 ? Dart is a client-optimized programming language for apps on multiple platforms. It is developed by Google and is used to build mobile, desktop, server, and web applications. Dart is an object-oriented, class-based, garbage-collected language with C-style syntax. Dart can compile to either native code or JavaScript.   In other words, if you have ever heard about Flutter framework, and you are willing to learn it, then dart is a must.  Dart is just a programming language, having syntax similar to JavaScript and developed by Google.  That's all you need to know right now. Learning anything needs motivation. So, let us see Why Learn Dart? 1. Dart is an open-source language and supported by Google. ( that gives us a trust factor ). 2. Dart is used Flutter ( most important reason ) 3. Dart is a robust and efficient language. 4. Dart is easy to learn and can be a good choice as your first programming language. Where to Run Dart programs? Unlike any other pr...