I recently read about Native Script, wanted to know a little more about it and how it works.
What is Native Script?
What are the advantages?
How does it work?
Is it worth using?
While your learning curve?
I want to open a file in nativescript, I can open it using the following code:
var openFile = function () {
var FilePath = file.path;
if (FilePath === false) {
console.log('File Format Not Available');
} else {
var intent = new android...