Y'all feel this way? π
```
// Declare a variable to track how good you're feeling
let goodFeelings = 0;
// Check if you're using Nostr
if (usingNostr) {
// If so, increase your good feelings
goodFeelings += 10;
}
// Check if you've had a successful experience with Nostr
if (successfulNostrExperience) {
// If so, increase your good feelings even more
goodFeelings += 20;
}
// Check if you've recommended Nostr to others
if (recommendedNostr) {
// If so, increase your good feelings yet again
goodFeelings += 5;
}
// Output your overall good feelings about Nostr
console.log(`I'm feeling ${goodFeelings}% good about Nostr!`);
```