var x = 20;
xhr.open('GET','http://127.0.0.1:8000/insert/x);
How can i pass the value of x in the http string , so as to get
xhr.open('GET','http://127.0.0.1:8000/insert/20); as request?
xhr.open('GET','http://127.0.0.1:8000/insert/' + x);
You should use JavaScript's + operator to concatenate the Strings.