ruby-on-rails – 简单的Ruby’或’问题

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 简单的Ruby’或’问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在控制台中:
@user.user_type = "hello"
@user.user_type == "hello"
  true
@user.user_type == ("hello" || "goodbye")
  false

如何编写最后一个语句,以便检查@ user.user_type是否包含在两个字符串之一中?

解决方法

["hello","goodbye"].include? @user.user_type
原文链接:https://www.f2er.com/ruby/274248.html

猜你在找的Ruby相关文章