Alert function

 

if the below is executable , is the a way to Alert a function without storing its value in variable just by calling the variable between the brackets of the ALert?


int x = 3;

int y = 10;


Alert (x+y);


is the a way to Alert a function without storing its value in variable just by calling the variable between the brackets of the ALert?

NormalizeDouble(Bid,2);

Alert (NormalizeDouble);

 
This is a basic problem. You understand how to coding
Alert(NormalizeDouble(Bid,2));
 

The alert function uses a string.

   int x = 3;
   int y = 10;
   Alert (IntegerToString(x+y));
   
   double xx = 3.27;
   double yy = 10.11;
   Alert (DoubleToString(xx+yy,2));
 
Le Hong Phat:
This is a basic problem. You understand how to coding
Alert(NormalizeDouble(Bid,2));

Thank you

 
Keith Watford:

The alert function uses a string.

Thank you

Reason: