i have a problem to make comment multi line in typescript angular 2. I just want to comment this code :
protected _checkingList(data, lists:Array<any>){
let value = false;
//if (data['__children'].length > 0){
// value = this.percobaanCentangMajuMundukCantik(data, data['__children'],data['__children'].length);
//}
if (data.value == true){
value = true;
}
return value;
}
symbol "//" is the single comment in typescript, i want to make multiline comment, does anyone know how to make it ?
The following is a multiline comment:
/* */
It uses the same commenting syntax as vanilla javascript.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With