--- title: String.prototype.strike() slug: Web/JavaScript/Reference/Global_Objects/String/strike tags: - Descontinuado - JavaScript - Prototipo - String - metodo - strike() translation_of: Web/JavaScript/Reference/Global_Objects/String/strike ---
O método strike()
cria um elemento HTML <strike>
que faz com que uma string seja exibida com o texto riscado.
str.strike()
Uma string contendo um elemento HTML <strike>
.
O método strike()
cria uma string dentro uma tag <strike>
: "<strike>str</strike>
".
strike()
O exemplo a seguir usa métodos do objeto global String para alterar a formatação da string:
var worldString = 'Olá, mundo'; console.log(worldString.blink()); // <blink>Olá, mundo</blink> console.log(worldString.bold()); // <b>Olá, mundo</b> console.log(worldString.italics()); // <i>Olá, mundo</i> console.log(worldString.strike()); // <strike>Olá, mundo</strike>
Specification |
---|
{{SpecName('ESDraft', '#sec-string.prototype.strike', 'String.prototype.strike')}} |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("javascript.builtins.String.strike")}}