Hi
I would like to implement typescript in dynamics CRM. I have created a new simple type script.
Type script file
class Student {
//Function
age() {
return 20;
}
}
and also i have converted typescript to javascript file.
After I don't know how should i cal age() function in the onchange event of Name field in the account entity.
Could you please any one help?