Built in Function in Jquery in Hindi
Built in Function
वह Function होते
है जो jquery Library में pre
define है जिनका use कर
के किसी ना किसी task को
परफोर्म किया जाता है built
in function कहलाते है
Jquery में
built in Function निम्नलिखित
है
charAt() :
यह
function string की दी गई index
number के अनुसार केरेक्टर
return करती है यह method
एक पेरामीटर लेती है
यह पेरामीटर string के
केरेक्टर की index number दिया
जाता है
Example :
var
x="engineersworld";
x.charAt(5);
Output :
e
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>