<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Measure Execution time in Node JS &#8211; MaXEster Technologies  | Technical Blog</title>
	<atom:link href="https://www.maxester.com/blog/tag/measure-execution-time-in-node-js/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.maxester.com/blog</link>
	<description>Tutorials, Examples and Implementation code for Developers Help</description>
	<lastBuildDate>Mon, 17 Feb 2025 09:17:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.22</generator>
	<item>
		<title>How To measure Execution time in Node?</title>
		<link>https://www.maxester.com/blog/2019/06/29/how-to-measure-execution-time-in-node/</link>
		<comments>https://www.maxester.com/blog/2019/06/29/how-to-measure-execution-time-in-node/#respond</comments>
		<pubDate>Sat, 29 Jun 2019 17:05:38 +0000</pubDate>
		<dc:creator><![CDATA[Bhaskar Chaudhary]]></dc:creator>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[Measure Execution time in Node JS]]></category>
		<category><![CDATA[Node JS]]></category>

		<guid isPermaLink="false">https://www.maxester.com/blog/?p=440</guid>
		<description><![CDATA[<p>To measure execution time in Node you can go with below code. IF you still face any issue or help feel free to connect with us. Use console.time() and console.timeEnd()</p>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2019/06/29/how-to-measure-execution-time-in-node/">How To measure Execution time in Node?</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[
<p>To measure execution time in Node you can go with below code. IF you still face any issue or help feel free to connect with us.</p>



<p>Use <strong>console.time()</strong> and <strong>console.timeEnd()</strong></p>



<center>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Fads -->
<ins class="adsbygoogle fads"
     style="display:inline-block;"
     data-ad-client="ca-pub-3804472713147276"
     data-ad-slot="1267368188"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>




<pre class="wp-block-code"><code>let i;
let a;
console.time("yourVariable");

for(i = 1; i &lt; 1000000; i++){
    a+=1;
}

console.timeEnd("yourVariable");</code></pre>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2019/06/29/how-to-measure-execution-time-in-node/">How To measure Execution time in Node?</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.maxester.com/blog/2019/06/29/how-to-measure-execution-time-in-node/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
