Given the data set {10,10,14,14,15,15,17,17,27,27,30,30}
is the mode {10,14,15,17,27,30}
or is there no mode?
Given the data set {10,10,14,14,15,15,17,17,27,27,30,30}
is the mode {10,14,15,17,27,30}
or is there no mode?
As you're realising, the naive definition of a mode as the most common value breaks down when there are ties for mode, especially in the extreme case when every value is distinct, which is very common with measured data with fractional parts and a small dataset. Perhaps every person would have a distinct height if you measured to the nearest nanometre, but that shouldn't stop you thinking about the mode of a height distribution. So conventions about measurement enter too.
More crucially, there are other ways to get at modes. One is to apply a kernel or other density estimate and look for the position of a peak of the estimated density. Another, similar in spirit but not in detail, is to look recursively for the midpoint of an interval where values are densest. There might be reservations about how far either idea carries over to discrete variables.
The half-sample mode procedure discussed in much more detail within How to find the mode of a probability density function? gives 14 as the answer in your case.
Drawing a graph of your distribution to see any estimate of mode in context and thinking about how you might want to use the mode are basic but both important steps.
There is no single mode in a multimodal data set. Your particular data set is completely uniform, so it has no mode at all. Since all your observations are integers, it seems likely that the variable is not continuous, but it isn't clear what they are, the spacing between them is odd (i.e. they aren't dice rolls or something like that).