Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

179
Views
JavaScript replace() method best practice

I'm somewhat new to programming, so looking for some best practice advice. Is there a better way to write the following code, rather than using the replace() method twice?

const URL = 'user/profile/:id/result?size=:query';
const URI = URL.replace(':id', '1111').replace(':query', 100); //'user/profile/1111/result?size=100'
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

you can use templates by wrapping the string with back ticks (```) and using ${somevalue}

var size = 100
var id = 1111
const URL = `user/profile/${id}/result?size=${size}`
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!