<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js">
</script>
</head>
<body style="padding: 20px 20pc;">
<div ng-app="app">
<div ng-repeat="item in 'somewords'.split('')">
{{$index + 1}}. {{item}}
</div>
</div>
<script type="text/javascript">
</script>
</body>
</html>
Hey guys, I've been searching for answers on this issue but haven't found a solution yet. I'm delving into Angular and came across this code snippet that is meant to count and split the letters within a given word. However, I'm encountering an issue where the curly braces are appearing as if they were ordinary text in HTML. Any ideas on what could be going wrong here?