test commit

This commit is contained in:
james 2024-05-20 07:23:09 +02:00
parent e2c94ceeb1
commit d2145779c4
1 changed files with 15 additions and 15 deletions

30
js.js
View File

@ -1,21 +1,21 @@
const url = "http://localhost/pk/" const url = "http://localhost/P20.05"
fetch( url + 'get.php') fetch('get.php')
.then(response => response.json()) .then(response => response.json())
.then( data => { .then( data => {
console.log(data) console.log(data)
}) })
// function sortujSufiksy() { function sortujSufiksy() {
// const slowo = document.getElementById('slowo').value; const slowo = document.getElementById('slowo').value;
// const sufiksy = []; const sufiksy = [];
// for (let i = 0; i < slowo.length; i++) { for (let i = 0; i < slowo.length; i++) {
// sufiksy.push(slowo.slice(i)); sufiksy.push(slowo.slice(i));
// } }
// document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy); document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
// sufiksy.sort(); sufiksy.sort();
// document.getElementById('posortowane').textContent = formatSufiksy(sufiksy); document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
// } }
// function formatSufiksy(sufiksy) { function formatSufiksy(sufiksy) {
// return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n'); return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
// } }