Tutorial Operator OR pada Ruby
- Categories:
- ruby
Operator OR
pada bahasa pemrograman Ruby dapat digunakan tidak hanya saat conditional if, tetapi juga dapat digunakan untuk assigment variable. Berikut ini adalah sedikit penjelasan penggunaan operator OR
(||) pada bahasa pemrograman Ruby.
c = a || b
atau c = a or b
Maksud sintaks diatas adalah jika variabel a nil
atau false
, maka variabel c sama dengan variabel b.
c ||= 3
Sintaks diatas adalah kependekan dari sintaks poin pertama. Dengan kata lain, sintaks c ||= 3
sama dengan c = c || 3
yang berarti jika c belum terdefinisi maka akan diisi dengan nilai 3.
Contoh Kode
- Tags:
- #ruby
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.