0

Can I write comments inside the code?

Hey,

I want to give comments inside the code.

Example : sum = number(a) + number(b) (// this is the sum of two numbers).

2 replies

null
    • commerciale
    • 3 yrs ago
    • Reported - view

    You can write the comments inside " "

    For Example:

    "This is a comment";

    sum = number(a) + number(b);

    • Deepak_Kumar
    • 3 yrs ago
    • Reported - view

    Thanks it's worked.