We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29fd958 commit 50b68f7Copy full SHA for 50b68f7
javascript-nodejs/src/rpc_server.js
@@ -26,7 +26,7 @@ amqp.connect('amqp://localhost', function(err, conn) {
26
});
27
28
function fibonacci(n) {
29
- if (n == 0 || n == 1)
+ if (n === 0 || n === 1)
30
return n;
31
else
32
return fibonacci(n - 1) + fibonacci(n - 2);
0 commit comments