Thursday, November 15, 2018

Monday, August 6, 2018

Function With Argument in Hindi

Function With Argument in Hindi

Function With Argument in Hindi :

jquery में function को Declare करने का एक तरीका यह भी है इस तरीके का use कर के function को value argument के रूप में पास किया जाता है argument एक तरह के variable होते है जिनको function के parenthesis में लिखा जाता है

Syntax :
function function_name(args_list)
{
body of function;
}


उदहारण :
function sum(x,y)
{
document.write("Sum :"+(x+y));
}


उपरोक्त उदहारण मे एक function sum बनाया गया है जिसमे दो peramitter पास किये गए है x तथा y इन दोनों को value तब पास की जाती है जब function call होता है

Example :

sum(10,2);

उपरोक्त उदहारण में sum नाम के function को call किया गया है जिसमे 2 value पास की गई है यह value sum function के x , तथा y argument के द्वारा Receive किये जाते ही तथा function में use की जाती है


Example of function With Argument
<!DOCTYPE html>
<html>
<head>
<title>Function Example</title>
</head>
<body>
<script type="text/javascript">
function sum(x,y)
{
document.write("Sum :"+(x+y));
}
sum(10,2);
</script>
</body>
</html>


Friday, August 3, 2018

push and pop function in jquery in Hindi

push and pop function in jquery in Hindi

push and pop function in jquery in Hindi :

pop() :
इस function का use कर के array के last element को delete किया जाता है और यह function delete किये गए केरेक्टर को return करता है

Example :
var z=[1,2,5,3];
z.pop();


push() :
इस function का use कर के array के last में केरेक्टर को इन्सर्ट किया जाता है तथा यह Function insert किये गए केरेक्टर को return करता है

Example :
var z=[1,2,5,3];
z.push(4);

Example :
<html>
<head>
<title>Built In Function</title>
</head>
<body>
<script type="text/javascript">
var z=[1,2,5,3];
document.write(z.pop());
document.write("<br>");
document.write(z.push(5));
</script>
</body>
</html>

Thursday, August 2, 2018

Built in Function in Jquery in Hindi

Built in Function in Jquery in Hindi

Built in Function in Jquery in Hindi

Built in Function वह Function होते है जो jquery Library में pre define है जिनका use कर के किसी ना किसी task को परफोर्म किया जाता है built in function कहलाते है
Jquery में built in Function निम्नलिखित है
  1. charAt() :
यह function string की दी गई index number के अनुसार केरेक्टर return करती है यह method एक पेरामीटर लेती है यह पेरामीटर string के केरेक्टर की index number दिया जाता है

Example :
var x="engineersworld";
x.charAt(5);

Output :

e

  1. concat() :
इस function का use कर के 2 string को concat किया जाता है

Example :
var x="engineersworld";
var y=".in";
x.concat(y);


OutPut :
Engineersworld.in

IndexOf() :
इस Function का use कर कर किसी भी string के केरेक्टर की index number पता की जाती है

Example :
var x="engineersworld";
x.indexOf(“n”);

Output :
1

toUpperCase() :
इस function का use कर के किसी भी string को upper case में convert किया जाता है

Example :
var x="engineersworld";
x.toUpperCase();


toLowerCase() :
इस function का उसे किसी uppercase string को lower case string में convert करने के लिए किया जाता है
Example
var x="ENGINEERSWORLD";
x.toLowerCase();




Example Of All Built In Function
<html>
<head>
<title>Built In Function</title>
</head>
<body>
<script type="text/javascript">
var x="engineersworld";
var y=".in";
document.write(x.charAt(2));
document.write("<br>");
document.write(x.concat(y));
document.write("<br>");
document.write(x.indexOf("s"));
document.write("<br>");
document.write(x.toUpperCase());
document.write("<br>");
document.write(x.toLowerCase());
document.write("<br>");
document.write(x.toString());
</script>
</body>
</html>