Hi. I am new in ionic. I need to get data and display the data, below is the sample data.
export default [ {G: [‘ग’, ‘ଗ’] , H: [‘हा’,‘ହଁ’] , A:[‘ए’,‘ଏ’]} ];
from the above data if user type G and select option 1 i want to display ‘ग’ and if user select 2 i want to display ‘ଗ’
if user type H and select option 1 i want to display ‘हा’ and if user select 2 i want to display ‘ହଁ’
if user type A and select option 1 i want to display ‘ए’ and if user select 2 i want to display ‘ଏ’ and so on…