How can we return a value from User Defined Function ? For
Eg. we have 2 functions. In Fun1 i am getting 2 values (a,b)
and i am addding those 2 and storing in to another var (c).
Now i want to pass that var(c) to another function (fun2).
What will be the script?
Answers were Sorted based on User's Feedback
Hi Ganesh,
I will try for this. Thank u for sending responce once
again.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ganesh
<script language="javascript">
function add()
{
var a=parseInt(document.getElementById('x').value);
var b=parseInt(document.getElementById('y').value);
var c= a + b;
fun(c);
}
function fun(disp)
{
alert(disp);
}
</script>
</head>
<body>
Enter First Number:<input type="text" id="x" /><br />
Enter Second Number:<input type="text" id="y" /><br />
<input type="button" value="Add" onclick="add()" />
</body>
Am i right ??
| Is This Answer Correct ? | 1 Yes | 1 No |
I don't think so Ganesh because, The same i said in the
interview, then the Interviewr said it is wrong we can not
decalre the function directly like function fun(disp).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh
Hi Mr. Krishna,
I worked on this code.
its working right ??
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramesh
Hi Ganesh/Krishna,
Can you try it out the below one.
function add(out c)
{
c=a+b
add(c)
}
dis=add(c)
function len(dis)
{
count=length(dis)
}
| Is This Answer Correct ? | 0 Yes | 1 No |
How to double click on Simple HtmlText in SilkTest automation tool?
why script is client dependant.
In sap script, created 1 form but when its went to production system , client want some changes in 1 (ex - addrss) window, what we will do?
please send the scrpit driver program
What is URL Loader.?
We have 1 web page with names column. I am giving the Service Providers1,2,3.... @ that time dynamically some no of names are displaying in the webpage and The Pop up windows are opening(No.of Pop Up windows=No.of Names). The names may be diffar for each and every Service Provders (Dynamically) How can we handle the Dynamic values?
how can we move to the next column in excel sheet in file operation using descriptive programming inQTP?
Difference between the SAP MDM vs IBM MDM in approach, the tools used , ease in handling/implementing.
I have deducted tds on pay slip for employees ist month tell me how to deposit this amt to govt. by bank or any form is available fill the same and deposit the govt. department. Pls explain me which form to be used for deposit the same with due date.
I Am Planning to Write ISTQB foundation level Ceritification of inida. can Any Body let me know how to prepare for it & Any Study material can you provide or Any other E-books i should need to Study. Please Mail to me ajaybe_2004@yahoo.co.in THnaks in advance Ajay
In the Web page we have a table link, if we click on that link all the contents under that link will be sorted (asscending/Descending). Now i want to check in which order the list is ? for that i need to get the data in to some var How can i get that cells data?
How applet differ from Swings in java ?