Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRoutine Poutine
26,050 PointsWhy are "%%" used for a placeholder and where does this syntax come from?
Hi,
I'm confused about the use of %% for placeholders. Where are they in the JavaScript documentation -- or Nodejs documentation?
Best,
Matt
1 Answer
Darryl Mah
5,492 PointsHello Matt, The choice of the %% placeholders is more or less up to you, you'll just want to avoid characters that will escape from the string. The logic they're going with here is to use the .replace() method on a String. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace
var p = 'The quick brown fox jumps over the lazy dog. If the %dog% reacted, was it really lazy?';
console.log(p.replace('%dog%', 'monkey')); // expected output: "The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?"
hope this helps :)