XML CDATA also means character data. XML CDATA is text that will not be parsed by a parser. Tags inside the text will not be treated as markup and entities will not be expanded.
<script type="text/javascript"> <![CDATA[ alert("Hello world"); ]]> </script>