str.prepend(other_str) â str
Instance Public methods
PrependâPrepend the given string to str.
1 2 3 | a = "world" a.prepend( "hello " ) #=> "hello world" a #=> "hello world" |
PrependâPrepend the given string to str.
1 2 3 | a = "world" a.prepend( "hello " ) #=> "hello world" a #=> "hello world" |
Designed by : w10schools
service@w10schools.com
Please login to continue.