Rails dynamic number of arguments to method

Sometimes we come in an situation where we may not know the number of arguments passed to the method. We can use single splat operator(*) and two splat operators(**) before the arguments passed as parameters to the method

Read More