Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to convert a query string to an object in Node.js

1 Answer

0 votes
const queryString = "?q=NodeJS&lang=en&limit=10";

let obj = new URLSearchParams(queryString);

console.log(obj.get('q')); 
console.log(obj.get('lang'));
console.log(obj.get('limit'));

obj = Object.fromEntries(new URLSearchParams(queryString));

console.log(obj);

  
  
  
  
/*
run:
  
NodeJS
en
10
{ q: 'NodeJS', lang: 'en', limit: '10' }

*/

 



answered Apr 22, 2022 by avibootz

Related questions

3 answers 288 views
3 answers 327 views
2 answers 297 views
2 answers 264 views
264 views asked Feb 27, 2020 by avibootz
1 answer 240 views
3 answers 414 views
1 answer 190 views
...