<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vishwajeet Mishra</title>
    <description>The latest articles on DEV Community by Vishwajeet Mishra (@vishwajeet_mishra).</description>
    <link>https://dev.to/vishwajeet_mishra</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1961341%2Fd2e56e5a-ad2b-445c-8fab-bf1cbca89b02.jpg</url>
      <title>DEV Community: Vishwajeet Mishra</title>
      <link>https://dev.to/vishwajeet_mishra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vishwajeet_mishra"/>
    <language>en</language>
    <item>
      <title>Interactive Pain Navigator</title>
      <dc:creator>Vishwajeet Mishra</dc:creator>
      <pubDate>Fri, 24 Jul 2026 19:05:56 +0000</pubDate>
      <link>https://dev.to/vishwajeet_mishra/interactive-pain-navigator-3gg5</link>
      <guid>https://dev.to/vishwajeet_mishra/interactive-pain-navigator-3gg5</guid>
      <description>&lt;p&gt;🩺 Not sure what’s causing your pain? Start here.&lt;/p&gt;

&lt;p&gt;Pain isn’t always easy to describe. Is it your lower back? Your shoulder? Does it travel down your leg? Is physiotherapy the right choice, or would massage therapy or chiropractic care help more?&lt;/p&gt;

&lt;p&gt;We’ve built a free Interactive Body Pain Navigator to make finding the right care easier.&lt;/p&gt;

&lt;p&gt;✅ Click where it hurts&lt;br&gt;
✅ Answer a few simple questions&lt;br&gt;
✅ Get a personalized treatment recommendation based on your symptoms&lt;/p&gt;

&lt;p&gt;Whether you’re dealing with:&lt;br&gt;
• Back Pain&lt;br&gt;
• Neck Pain&lt;br&gt;
• Sciatica&lt;br&gt;
• Shoulder Pain&lt;br&gt;
• Knee Pain&lt;br&gt;
• Hip Pain&lt;br&gt;
• Sports Injuries&lt;br&gt;
• ICBC Injuries&lt;/p&gt;

&lt;p&gt;…our Pain Navigator can help point you in the right direction before you even book an appointment.&lt;/p&gt;

&lt;p&gt;🎯 Try it here:&lt;br&gt;
&lt;a href="https://www.reviverehab.ca/tools/body-pain-navigator" rel="noopener noreferrer"&gt;https://www.reviverehab.ca/tools/body-pain-navigator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;No sign-up. No cost. Just a smarter way to start your recovery.&lt;/p&gt;

&lt;p&gt;Because the right treatment starts with understanding your pain.&lt;/p&gt;

&lt;h1&gt;
  
  
  Physiotherapy #BodyPain #BackPain #NeckPain #Sciatica #ShoulderPain #KneePain #HipPain #SportsInjury #ICBC #Rehabilitation #Surrey #Langley #Abbotsford #ReviveRehab
&lt;/h1&gt;

</description>
      <category>nextjs</category>
    </item>
    <item>
      <title>Javascript functions with and without parentheses</title>
      <dc:creator>Vishwajeet Mishra</dc:creator>
      <pubDate>Fri, 31 Jan 2025 10:35:10 +0000</pubDate>
      <link>https://dev.to/vishwajeet_mishra/javascript-functions-with-and-without-parentheses-54ap</link>
      <guid>https://dev.to/vishwajeet_mishra/javascript-functions-with-and-without-parentheses-54ap</guid>
      <description>&lt;p&gt;Often times we have seen that the javascript functions are written without parentheses which confuses most of the beginners as well as experienced folks. Today I am going to give a simplest explanation of why functions with and without parentheses are used.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;let bmwCar = {&lt;br&gt;
make:'BMW',&lt;br&gt;
model:'X1',&lt;br&gt;
colour:'Red',&lt;br&gt;
getCarDetails: function(){&lt;br&gt;
return this.make+' '+this.model+' '+this.colour;&lt;br&gt;
}&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;let mercedesCar = {&lt;br&gt;
make:'BMW',&lt;br&gt;
model:'X1',&lt;br&gt;
colour:'Red'&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;in the above code, mercedesCar object does not have getCarDetails function. but in javascript we can borrow methods from other object like below.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;let carDetails = bmwCar.getCarDetails //this is where we don't use parentheses as we are not invoking a function. we just want to give reference and assign it to a variable.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;if we want to print mercedesCar details we need to bind getCarDetails method from bmwCar to it as below.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;let carDetails = bmwCar.getCarDetails.bind(mercedesCar)&lt;br&gt;
console.log(carDetails()) // now using here parenthesis will invoke the method and results will be displayed&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt; : Parenthesis in javascript are only used when we need to invoke a function. we don't use parenthesis if we only need to give reference to it&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
