Sarting array with meaning thought.
Above code will help you to add number by using recursion function.
Above code will help you to do factorial of number by using recursion function.
Above program is about swapping of two number without any third variable.
When a function call itself directly or indirectly it is recursion and function which do this is called recursion function.…
Creating your own contact list.
Building a Notification In Android
Here is code that how to add a custom menu in setting option. You have read in my first post…
Code – HTML <input type=”file” name=”myfile” id=”myfile”/> <input type=”button” value=”U[load” onClick=”up()”/> function up() { var file=document.getElementById(“myfile”).files[0]; var data=new FormData();data.append(“myfile”,file,file.name); var…
Code – HTML <html> <head> <title>AJAX – POST Method</title> function postdata() { var data=document.getElementById(“txt”).value; var xhr=new XMLHttpRequest(); xhr.open(“POST”,”a.php”,true); xhr.setRequestHeader(“Content-type”, “application/x-www-form-urlencoded”);…