Skip to content

Instantly share code, notes, and snippets.

@timelycoder
Created October 9, 2025 15:13
Show Gist options
  • Save timelycoder/36e4a1f99ca5bb19dacbd4483721294b to your computer and use it in GitHub Desktop.
Save timelycoder/36e4a1f99ca5bb19dacbd4483721294b to your computer and use it in GitHub Desktop.
Node.js hello example — personal note

আমার Gist নোট (বাংলা)

এই Gist টা আমি ব্যক্তিগত নোট হিসেবে রেখেছি — দ্রুত reference এর জন্য।

কীভাবে চালাবো

  • লোকালি চালাতে: node hello.js
  • উদ্দেশ্য: জয়েন্ট কোড এবং নোট রাখা (quick reference)

পরিবর্তন ও সংস্করণ

  • পরিবর্তন করলে Gist পেজ থেকে EditUpdate Gist ক্লিক করো।
// hello.js
// লেখাঃ সুমন — প্রথম Gist উদাহরণ (বাংলা মন্তব্য)
// এই ফাইলটি node দিয়ে চালালে console-এ মেসেজ দেখাবে
function sayHello(name) {
// name প্যারামিটার ব্যবহার করে কাস্টম ম্যাসেজ তৈরী
return `Hello, ${name}! এইটা তোমার ছোট্ট gist উদাহরণ।`;
}
console.log(sayHello("Shumon"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment